Regen.
This commit is contained in:
parent
f7c038012b
commit
8f4adbff6b
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: init_sysent.c,v 1.185 2007/02/09 21:55:30 ad Exp $ */
|
||||
/* $NetBSD: init_sysent.c,v 1.186 2007/02/10 10:25:44 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.159.2.6 2007/02/01 08:48:38 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.185 2007/02/09 21:55:30 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.186 2007/02/10 10:25:44 ad Exp $");
|
||||
|
||||
#include "opt_ktrace.h"
|
||||
#include "opt_nfsserver.h"
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: syscalls.c,v 1.181 2007/02/09 21:55:31 ad Exp $ */
|
||||
/* $NetBSD: syscalls.c,v 1.182 2007/02/10 10:25:44 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.181 2007/02/09 21:55:31 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.182 2007/02/10 10:25:44 ad Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_ktrace.h"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscall.h,v 1.178 2007/02/09 21:55:37 ad Exp $ */
|
||||
/* $NetBSD: syscall.h,v 1.179 2007/02/10 10:25:44 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALL_H_
|
||||
|
@ -934,13 +934,13 @@
|
|||
/* syscall: "_lwp_detach" ret: "int" args: "lwpid_t" */
|
||||
#define SYS__lwp_detach 319
|
||||
|
||||
/* syscall: "_lwp_park" ret: "int" args: "const struct timespec *" "struct __ucontext *" "void *" */
|
||||
/* syscall: "_lwp_park" ret: "int" args: "const struct timespec *" "struct __ucontext *" "const void *" */
|
||||
#define SYS__lwp_park 320
|
||||
|
||||
/* syscall: "_lwp_unpark" ret: "int" args: "lwpid_t" "void *" */
|
||||
/* syscall: "_lwp_unpark" ret: "int" args: "lwpid_t" "const void *" */
|
||||
#define SYS__lwp_unpark 321
|
||||
|
||||
/* syscall: "_lwp_unpark_all" ret: "int" args: "const lwpid_t *" "size_t" "void *" */
|
||||
/* syscall: "_lwp_unpark_all" ret: "size_t" args: "const lwpid_t *" "size_t" "const void *" */
|
||||
#define SYS__lwp_unpark_all 322
|
||||
|
||||
/* 330 is obsolete sys_sa_register */
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscallargs.h,v 1.160 2007/02/09 21:55:37 ad Exp $ */
|
||||
/* $NetBSD: syscallargs.h,v 1.161 2007/02/10 10:25:44 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.164 2007/02/10 10:24:44 ad Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALLARGS_H_
|
||||
|
@ -1398,18 +1398,18 @@ struct sys__lwp_detach_args {
|
|||
struct sys__lwp_park_args {
|
||||
syscallarg(const struct timespec *) ts;
|
||||
syscallarg(struct __ucontext *) ucp;
|
||||
syscallarg(void *) hint;
|
||||
syscallarg(const void *) hint;
|
||||
};
|
||||
|
||||
struct sys__lwp_unpark_args {
|
||||
syscallarg(lwpid_t) target;
|
||||
syscallarg(void *) hint;
|
||||
syscallarg(const void *) hint;
|
||||
};
|
||||
|
||||
struct sys__lwp_unpark_all_args {
|
||||
syscallarg(const lwpid_t *) targets;
|
||||
syscallarg(size_t) ntargets;
|
||||
syscallarg(void *) hint;
|
||||
syscallarg(const void *) hint;
|
||||
};
|
||||
|
||||
struct sys___sigaction_sigtramp_args {
|
||||
|
|
Loading…
Reference in New Issue