diff options
-rw-r--r-- | sys/kern/init_sysent.c | 6 | ||||
-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, 9 insertions, 9 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 650f633173e..5e40c8c9172 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.209 2019/11/27 01:13:04 deraadt Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.210 2019/12/24 04:24:38 visa Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.198 2019/11/27 01:04:13 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.199 2019/12/24 04:23:43 visa Exp */ #include <sys/param.h> @@ -214,7 +214,7 @@ struct sysent sysent[] = { sys_clock_getres }, /* 89 = clock_getres */ { 2, s(struct sys_dup2_args), 0, sys_dup2 }, /* 90 = dup2 */ - { 2, s(struct sys_nanosleep_args), 0, + { 2, s(struct sys_nanosleep_args), SY_NOLOCK | 0, sys_nanosleep }, /* 91 = nanosleep */ { 3, s(struct sys_fcntl_args), 0, sys_fcntl }, /* 92 = fcntl */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 47b867e4a7e..8ffb0034259 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.208 2019/11/27 01:13:04 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.209 2019/12/24 04:24:38 visa Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.198 2019/11/27 01:04:13 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.199 2019/12/24 04:23:43 visa Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index f63db8347aa..cfe20a1fd8f 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.206 2019/11/27 01:13:03 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.207 2019/12/24 04:24:38 visa Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.198 2019/11/27 01:04:13 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.199 2019/12/24 04:23:43 visa Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index b35ec2c4157..25eacd1d71b 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.209 2019/11/27 01:13:03 deraadt Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.210 2019/12/24 04:24:38 visa Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.198 2019/11/27 01:04:13 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.199 2019/12/24 04:23:43 visa Exp */ #ifdef syscallarg |