Regen - syscalls.master changed.
This commit is contained in:
parent
97d2a58201
commit
e51d1d566c
|
@ -2,7 +2,7 @@
|
|||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.64 1997/11/04 21:24:18 thorpej Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.64 1997/11/04 21:24:18 thorpej Exp
|
||||
*/
|
||||
|
||||
char *syscallnames[] = {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.64 1997/11/04 21:24:18 thorpej Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: "int" "..." */
|
||||
|
@ -222,10 +222,10 @@
|
|||
/* syscall: "mincore" ret: "int" args: "caddr_t" "size_t" "char *" */
|
||||
#define SYS_mincore 78
|
||||
|
||||
/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
|
||||
/* syscall: "getgroups" ret: "int" args: "int" "gid_t *" */
|
||||
#define SYS_getgroups 79
|
||||
|
||||
/* syscall: "setgroups" ret: "int" args: "u_int" "const gid_t *" */
|
||||
/* syscall: "setgroups" ret: "int" args: "int" "const gid_t *" */
|
||||
#define SYS_setgroups 80
|
||||
|
||||
/* syscall: "getpgrp" ret: "int" args: */
|
||||
|
@ -256,7 +256,7 @@
|
|||
/* syscall: "fcntl" ret: "int" args: "int" "int" "..." */
|
||||
#define SYS_fcntl 92
|
||||
|
||||
/* syscall: "select" ret: "int" args: "u_int" "fd_set *" "fd_set *" "fd_set *" "struct timeval *" */
|
||||
/* syscall: "select" ret: "int" args: "int" "fd_set *" "fd_set *" "fd_set *" "struct timeval *" */
|
||||
#define SYS_select 93
|
||||
|
||||
/* syscall: "fsync" ret: "int" args: "int" */
|
||||
|
@ -568,7 +568,7 @@
|
|||
/* syscall: "posix_rename" ret: "int" args: "const char *" "const char *" */
|
||||
#define SYS_posix_rename 270
|
||||
|
||||
/* syscall: "swapctl" ret: "int" args: "int" "void *" "int" */
|
||||
/* syscall: "swapctl" ret: "int" args: "int" "const void *" "int" */
|
||||
#define SYS_swapctl 271
|
||||
|
||||
/* syscall: "getdents" ret: "int" args: "int" "char *" "size_t" */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.64 1997/11/04 21:24:18 thorpej Exp
|
||||
*/
|
||||
|
||||
#define syscallarg(x) union { x datum; register_t pad; }
|
||||
|
@ -335,12 +335,12 @@ struct sys_mincore_args {
|
|||
};
|
||||
|
||||
struct sys_getgroups_args {
|
||||
syscallarg(u_int) gidsetsize;
|
||||
syscallarg(int) gidsetsize;
|
||||
syscallarg(gid_t *) gidset;
|
||||
};
|
||||
|
||||
struct sys_setgroups_args {
|
||||
syscallarg(u_int) gidsetsize;
|
||||
syscallarg(int) gidsetsize;
|
||||
syscallarg(const gid_t *) gidset;
|
||||
};
|
||||
|
||||
|
@ -386,7 +386,7 @@ struct sys_fcntl_args {
|
|||
};
|
||||
|
||||
struct sys_select_args {
|
||||
syscallarg(u_int) nd;
|
||||
syscallarg(int) nd;
|
||||
syscallarg(fd_set *) in;
|
||||
syscallarg(fd_set *) ou;
|
||||
syscallarg(fd_set *) ex;
|
||||
|
@ -995,7 +995,7 @@ struct sys_posix_rename_args {
|
|||
|
||||
struct sys_swapctl_args {
|
||||
syscallarg(int) cmd;
|
||||
syscallarg(void *) arg;
|
||||
syscallarg(const void *) arg;
|
||||
syscallarg(int) misc;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue