syscalls.master was changed
This commit is contained in:
parent
9840c3ca68
commit
1c35870a46
|
@ -2,7 +2,7 @@
|
|||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.15 1995/12/19 07:13:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.16 1996/02/02 01:17:28 christos Exp
|
||||
*/
|
||||
|
||||
#define SVR4_SYS_syscall 0
|
||||
|
@ -97,6 +97,7 @@
|
|||
#define SVR4_SYS_xstat 123
|
||||
#define SVR4_SYS_lxstat 124
|
||||
#define SVR4_SYS_fxstat 125
|
||||
#define SVR4_SYS_xmknod 126
|
||||
#define SVR4_SYS_setrlimit 128
|
||||
#define SVR4_SYS_getrlimit 129
|
||||
#define SVR4_SYS_rename 134
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.15 1995/12/19 07:13:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.16 1996/02/02 01:17:28 christos Exp
|
||||
*/
|
||||
|
||||
#define syscallarg(x) union { x datum; register_t pad; }
|
||||
|
@ -257,6 +257,13 @@ struct svr4_sys_fxstat_args {
|
|||
syscallarg(struct svr4_xstat *) sb;
|
||||
};
|
||||
|
||||
struct svr4_sys_xmknod_args {
|
||||
syscallarg(int) two;
|
||||
syscallarg(char *) path;
|
||||
syscallarg(svr4_dev_t) dev;
|
||||
syscallarg(svr4_mode_t) mode;
|
||||
};
|
||||
|
||||
struct svr4_sys_setrlimit_args {
|
||||
syscallarg(int) which;
|
||||
syscallarg(struct ogetrlimit *) rlp;
|
||||
|
@ -390,6 +397,7 @@ int sys_writev __P((struct proc *, void *, register_t *));
|
|||
int svr4_sys_xstat __P((struct proc *, void *, register_t *));
|
||||
int svr4_sys_lxstat __P((struct proc *, void *, register_t *));
|
||||
int svr4_sys_fxstat __P((struct proc *, void *, register_t *));
|
||||
int svr4_sys_xmknod __P((struct proc *, void *, register_t *));
|
||||
int svr4_sys_setrlimit __P((struct proc *, void *, register_t *));
|
||||
int svr4_sys_getrlimit __P((struct proc *, void *, register_t *));
|
||||
int sys_rename __P((struct proc *, void *, register_t *));
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.15 1995/12/19 07:13:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.16 1996/02/02 01:17:28 christos Exp
|
||||
*/
|
||||
|
||||
char *svr4_syscallnames[] = {
|
||||
|
@ -144,7 +144,7 @@ char *svr4_syscallnames[] = {
|
|||
"xstat", /* 123 = xstat */
|
||||
"lxstat", /* 124 = lxstat */
|
||||
"fxstat", /* 125 = fxstat */
|
||||
"#126 (unimplemented xmknod)", /* 126 = unimplemented xmknod */
|
||||
"xmknod", /* 126 = xmknod */
|
||||
"#127 (unimplemented clocal)", /* 127 = unimplemented clocal */
|
||||
"setrlimit", /* 128 = setrlimit */
|
||||
"getrlimit", /* 129 = getrlimit */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.15 1995/12/19 07:13:27 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.16 1996/02/02 01:17:28 christos Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -305,8 +305,8 @@ struct sysent svr4_sysent[] = {
|
|||
svr4_sys_lxstat }, /* 124 = lxstat */
|
||||
{ 3, s(struct svr4_sys_fxstat_args),
|
||||
svr4_sys_fxstat }, /* 125 = fxstat */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 126 = unimplemented xmknod */
|
||||
{ 4, s(struct svr4_sys_xmknod_args),
|
||||
svr4_sys_xmknod }, /* 126 = xmknod */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 127 = unimplemented clocal */
|
||||
{ 2, s(struct svr4_sys_setrlimit_args),
|
||||
|
|
Loading…
Reference in New Issue