diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2011-07-08 19:20:00 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2011-07-08 19:20:00 +0000 |
commit | 2fc7059d68a010549ce04362ec448df84abc2c5d (patch) | |
tree | 9c3e368ce162b5137a2c59fc4b3d9941b13684c5 /sys/compat | |
parent | af21571dfdf9a479699a5f87cc6d7e13f3315878 (diff) |
regen syscalls
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/linux_syscall.h | 4 | ||||
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 11 | ||||
-rw-r--r-- | sys/compat/linux/linux_syscalls.c | 4 | ||||
-rw-r--r-- | sys/compat/linux/linux_sysent.c | 8 |
4 files changed, 16 insertions, 11 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index ce406a2c5a2..cd370c19d5f 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscall.h,v 1.61 2011/07/08 05:03:42 matthew Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.62 2011/07/08 19:19:59 tedu Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.58 2011/07/08 05:01:27 matthew Exp + * created from OpenBSD: syscalls.master,v 1.59 2011/07/08 19:19:20 tedu Exp */ /* syscall: "syscall" ret: "int" args: */ diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 930a3c1599d..ab979094176 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscallargs.h,v 1.63 2011/07/08 05:03:42 matthew Exp $ */ +/* $OpenBSD: linux_syscallargs.h,v 1.64 2011/07/08 19:19:59 tedu Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.58 2011/07/08 05:01:27 matthew Exp + * created from OpenBSD: syscalls.master,v 1.59 2011/07/08 19:19:20 tedu Exp */ #ifdef syscallarg @@ -332,6 +332,11 @@ struct linux_sys_clone_args { syscallarg(void *) child_tidptr; }; +struct linux_sys_setdomainname_args { + syscallarg(char *) name; + syscallarg(int) len; +}; + struct linux_sys_uname_args { syscallarg(struct linux_utsname *) up; }; @@ -720,7 +725,7 @@ int linux_sys_ipc(struct proc *, void *, register_t *); int sys_fsync(struct proc *, void *, register_t *); int linux_sys_sigreturn(struct proc *, void *, register_t *); int linux_sys_clone(struct proc *, void *, register_t *); -int compat_09_sys_setdomainname(struct proc *, void *, register_t *); +int linux_sys_setdomainname(struct proc *, void *, register_t *); int linux_sys_uname(struct proc *, void *, register_t *); #ifdef __i386__ int linux_sys_modify_ldt(struct proc *, void *, register_t *); diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c index 0da4957ff4c..17b13f7f843 100644 --- a/sys/compat/linux/linux_syscalls.c +++ b/sys/compat/linux/linux_syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscalls.c,v 1.61 2011/07/08 05:03:42 matthew Exp $ */ +/* $OpenBSD: linux_syscalls.c,v 1.62 2011/07/08 19:19:59 tedu Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.58 2011/07/08 05:01:27 matthew Exp + * created from OpenBSD: syscalls.master,v 1.59 2011/07/08 19:19:20 tedu Exp */ char *linux_syscallnames[] = { diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c index 90088afee05..76126c31a36 100644 --- a/sys/compat/linux/linux_sysent.c +++ b/sys/compat/linux/linux_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_sysent.c,v 1.62 2011/07/08 05:03:42 matthew Exp $ */ +/* $OpenBSD: linux_sysent.c,v 1.63 2011/07/08 19:19:59 tedu Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.58 2011/07/08 05:01:27 matthew Exp + * created from OpenBSD: syscalls.master,v 1.59 2011/07/08 19:19:20 tedu Exp */ #include <sys/param.h> @@ -283,8 +283,8 @@ struct sysent linux_sysent[] = { linux_sys_sigreturn }, /* 119 = sigreturn */ { 5, s(struct linux_sys_clone_args), 0, linux_sys_clone }, /* 120 = clone */ - { 2, s(struct compat_09_sys_setdomainname_args), 0, - compat_09_sys_setdomainname }, /* 121 = setdomainname */ + { 2, s(struct linux_sys_setdomainname_args), 0, + linux_sys_setdomainname }, /* 121 = setdomainname */ { 1, s(struct linux_sys_uname_args), 0, linux_sys_uname }, /* 122 = uname */ #ifdef __i386__ |