This commit is contained in:
mycroft 1997-10-15 17:07:35 +00:00
parent 2587de6af9
commit 3a2dfc05e9
4 changed files with 20 additions and 20 deletions

View File

@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.57 1997/10/10 02:03:47 fvdl Exp
* created from NetBSD: syscalls.master,v 1.58 1997/10/15 17:04:20 mycroft Exp
*/
#include <sys/param.h>

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.57 1997/10/10 02:03:47 fvdl Exp
* created from NetBSD: syscalls.master,v 1.58 1997/10/15 17:04:20 mycroft Exp
*/
char *syscallnames[] = {

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.57 1997/10/10 02:03:47 fvdl Exp
* created from NetBSD: syscalls.master,v 1.58 1997/10/15 17:04:20 mycroft Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@ -235,14 +235,14 @@
/* syscall: "setpgid" ret: "int" args: "int" "int" */
#define SYS_setpgid 82
/* syscall: "setitimer" ret: "int" args: "u_int" "const struct itimerval *" "struct itimerval *" */
/* syscall: "setitimer" ret: "int" args: "int" "const struct itimerval *" "struct itimerval *" */
#define SYS_setitimer 83
/* 84 is compat_43 owait */
/* 85 is compat_12 oswapon */
/* syscall: "getitimer" ret: "int" args: "u_int" "struct itimerval *" */
/* syscall: "getitimer" ret: "int" args: "int" "struct itimerval *" */
#define SYS_getitimer 86
/* 87 is compat_43 ogethostname */
@ -323,10 +323,10 @@
#define SYS_getsockopt 118
/* 119 is obsolete resuba */
/* syscall: "readv" ret: "ssize_t" args: "int" "const struct iovec *" "u_int" */
/* syscall: "readv" ret: "ssize_t" args: "int" "const struct iovec *" "int" */
#define SYS_readv 120
/* syscall: "writev" ret: "ssize_t" args: "int" "const struct iovec *" "u_int" */
/* syscall: "writev" ret: "ssize_t" args: "int" "const struct iovec *" "int" */
#define SYS_writev 121
/* syscall: "settimeofday" ret: "int" args: "const struct timeval *" "const struct timezone *" */
@ -474,10 +474,10 @@
/* syscall: "fpathconf" ret: "long" args: "int" "int" */
#define SYS_fpathconf 192
/* syscall: "getrlimit" ret: "int" args: "u_int" "struct rlimit *" */
/* syscall: "getrlimit" ret: "int" args: "int" "struct rlimit *" */
#define SYS_getrlimit 194
/* syscall: "setrlimit" ret: "int" args: "u_int" "const struct rlimit *" */
/* syscall: "setrlimit" ret: "int" args: "int" "const struct rlimit *" */
#define SYS_setrlimit 195
/* 196 is compat_12 getdirentries */

View File

@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.57 1997/10/10 02:03:47 fvdl Exp
* created from NetBSD: syscalls.master,v 1.58 1997/10/15 17:04:20 mycroft Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -350,7 +350,7 @@ struct sys_setpgid_args {
};
struct sys_setitimer_args {
syscallarg(u_int) which;
syscallarg(int) which;
syscallarg(const struct itimerval *) itv;
syscallarg(struct itimerval *) oitv;
};
@ -360,7 +360,7 @@ struct compat_12_sys_swapon_args {
};
struct sys_getitimer_args {
syscallarg(u_int) which;
syscallarg(int) which;
syscallarg(struct itimerval *) itv;
};
@ -524,13 +524,13 @@ struct sys_getsockopt_args {
struct sys_readv_args {
syscallarg(int) fd;
syscallarg(const struct iovec *) iovp;
syscallarg(u_int) iovcnt;
syscallarg(int) iovcnt;
};
struct sys_writev_args {
syscallarg(int) fd;
syscallarg(const struct iovec *) iovp;
syscallarg(u_int) iovcnt;
syscallarg(int) iovcnt;
};
struct sys_settimeofday_args {
@ -644,13 +644,13 @@ struct compat_43_sys_sethostid_args {
};
struct compat_43_sys_getrlimit_args {
syscallarg(u_int) which;
syscallarg(struct ogetrlimit *) rlp;
syscallarg(int) which;
syscallarg(struct orlimit *) rlp;
};
struct compat_43_sys_setrlimit_args {
syscallarg(u_int) which;
syscallarg(struct ogetrlimit *) rlp;
syscallarg(int) which;
syscallarg(const struct orlimit *) rlp;
};
struct compat_43_sys_killpg_args {
@ -809,12 +809,12 @@ struct sys_fpathconf_args {
};
struct sys_getrlimit_args {
syscallarg(u_int) which;
syscallarg(int) which;
syscallarg(struct rlimit *) rlp;
};
struct sys_setrlimit_args {
syscallarg(u_int) which;
syscallarg(int) which;
syscallarg(const struct rlimit *) rlp;
};