diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-07-07 20:01:22 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-07-07 20:01:22 +0000 |
commit | 94c6c9333a40e6a83829325e18a44644de0c4c13 (patch) | |
tree | 79930418386ac0a7705b7e3499396661fd52d962 /sys | |
parent | 94d675840e060f96b84fd584db1de03636c9acf6 (diff) |
regen
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/init_sysent.c | 18 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 4 | ||||
-rw-r--r-- | sys/sys/syscall.h | 4 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 4 |
4 files changed, 15 insertions, 15 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index dc890100086..14635df8030 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.153 2014/07/07 00:27:13 guenther Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.154 2014/07/07 20:01:21 matthew Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp + * created from; OpenBSD: syscalls.master,v 1.142 2014/07/07 19:59:00 matthew Exp */ #include <sys/param.h> @@ -66,9 +66,9 @@ struct sysent sysent[] = { sys_unmount }, /* 22 = unmount */ { 1, s(struct sys_setuid_args), 0, sys_setuid }, /* 23 = setuid */ - { 0, 0, 0, + { 0, 0, SY_NOLOCK | 0, sys_getuid }, /* 24 = getuid */ - { 0, 0, 0, + { 0, 0, SY_NOLOCK | 0, sys_geteuid }, /* 25 = geteuid */ #ifdef PTRACE { 4, s(struct sys_ptrace_args), 0, @@ -109,7 +109,7 @@ struct sysent sysent[] = { sys_dup }, /* 41 = dup */ { 4, s(struct sys_fstatat_args), 0, sys_fstatat }, /* 42 = fstatat */ - { 0, 0, 0, + { 0, 0, SY_NOLOCK | 0, sys_getegid }, /* 43 = getegid */ { 4, s(struct sys_profil_args), 0, sys_profil }, /* 44 = profil */ @@ -122,7 +122,7 @@ struct sysent sysent[] = { #endif { 3, s(struct sys_sigaction_args), 0, sys_sigaction }, /* 46 = sigaction */ - { 0, 0, 0, + { 0, 0, SY_NOLOCK | 0, sys_getgid }, /* 47 = getgid */ { 2, s(struct sys_sigprocmask_args), 0, sys_sigprocmask }, /* 48 = sigprocmask */ @@ -191,7 +191,7 @@ struct sysent sysent[] = { sys_futimes }, /* 77 = futimes */ { 3, s(struct sys_mincore_args), 0, sys_mincore }, /* 78 = mincore */ - { 2, s(struct sys_getgroups_args), 0, + { 2, s(struct sys_getgroups_args), SY_NOLOCK | 0, sys_getgroups }, /* 79 = getgroups */ { 2, s(struct sys_setgroups_args), 0, sys_setgroups }, /* 80 = setgroups */ @@ -650,11 +650,11 @@ struct sysent sysent[] = { sys_nosys }, /* 279 = unimplemented sys_extattr_get_fd */ { 0, 0, 0, sys_nosys }, /* 280 = unimplemented sys_extattr_delete_fd */ - { 3, s(struct sys_getresuid_args), 0, + { 3, s(struct sys_getresuid_args), SY_NOLOCK | 0, sys_getresuid }, /* 281 = getresuid */ { 3, s(struct sys_setresuid_args), 0, sys_setresuid }, /* 282 = setresuid */ - { 3, s(struct sys_getresgid_args), 0, + { 3, s(struct sys_getresgid_args), SY_NOLOCK | 0, sys_getresgid }, /* 283 = getresgid */ { 3, s(struct sys_setresgid_args), 0, sys_setresgid }, /* 284 = setresgid */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index d81bd6d8925..bd1412ea9d0 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.154 2014/07/07 00:27:13 guenther Exp $ */ +/* $OpenBSD: syscalls.c,v 1.155 2014/07/07 20:01:21 matthew Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp + * created from; OpenBSD: syscalls.master,v 1.142 2014/07/07 19:59:00 matthew Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index d811fccae16..b6cab6b6cc8 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.153 2014/07/07 00:27:13 guenther Exp $ */ +/* $OpenBSD: syscall.h,v 1.154 2014/07/07 20:01:21 matthew Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp + * created from; OpenBSD: syscalls.master,v 1.142 2014/07/07 19:59:00 matthew Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 5839fee2a61..5d325f8663b 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.155 2014/07/07 00:27:13 guenther Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.156 2014/07/07 20:01:21 matthew Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp + * created from; OpenBSD: syscalls.master,v 1.142 2014/07/07 19:59:00 matthew Exp */ #ifdef syscallarg |