diff options
author | 2014-07-07 00:27:13 +0000 | |
---|---|---|
committer | 2014-07-07 00:27:13 +0000 | |
commit | 890ed1b8fbfbe87017164731dad83f0b8953254d (patch) | |
tree | 7fa1d478a95377e830791b803b176d8dcebc9053 | |
parent | If we find a bogus interrupt (undefined polarity or trigger) don't panic but (diff) | |
download | wireguard-openbsd-890ed1b8fbfbe87017164731dad83f0b8953254d.tar.xz wireguard-openbsd-890ed1b8fbfbe87017164731dad83f0b8953254d.zip |
regen
-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 0d40d24dbee..dc890100086 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.152 2014/06/14 18:01:55 deraadt Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.153 2014/07/07 00:27:13 guenther Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.140 2014/06/14 18:01:42 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp */ #include <sys/param.h> @@ -32,7 +32,7 @@ struct sysent sysent[] = { sys_open }, /* 5 = open */ { 1, s(struct sys_close_args), 0, sys_close }, /* 6 = close */ - { 2, s(struct sys_getentropy_args), 0, + { 2, s(struct sys_getentropy_args), SY_NOLOCK | 0, sys_getentropy }, /* 7 = getentropy */ { 2, s(struct sys___tfork_args), 0, sys___tfork }, /* 8 = __tfork */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 6fba275edad..d81bd6d8925 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.153 2014/06/14 18:01:55 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.154 2014/07/07 00:27:13 guenther Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.140 2014/06/14 18:01:42 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index deabe0e0df1..d811fccae16 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.152 2014/06/14 18:01:55 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.153 2014/07/07 00:27:13 guenther Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.140 2014/06/14 18:01:42 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 3dafbda02a0..5839fee2a61 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.154 2014/06/14 18:01:55 deraadt Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.155 2014/07/07 00:27:13 guenther Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.140 2014/06/14 18:01:42 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.141 2014/07/06 20:55:58 kettenis Exp */ #ifdef syscallarg |