diff options
author | 2016-03-28 20:51:09 +0000 | |
---|---|---|
committer | 2016-03-28 20:51:09 +0000 | |
commit | d245bf225b39e4ddd5c38dff4d6b7822594e9f9f (patch) | |
tree | efd957155e625de75ab6b2175d09555ba446890c | |
parent | Make sure that a thread that calls sched_yield(2) ends up on the run queue (diff) | |
download | wireguard-openbsd-d245bf225b39e4ddd5c38dff4d6b7822594e9f9f.tar.xz wireguard-openbsd-d245bf225b39e4ddd5c38dff4d6b7822594e9f9f.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 40e2300c392..7de6238272a 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.180 2016/03/21 22:41:29 bluhm Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.181 2016/03/28 20:51:09 kettenis Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.166 2015/11/24 23:47:17 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.168 2016/03/28 20:49:58 kettenis Exp */ #include <sys/param.h> @@ -685,7 +685,7 @@ struct sysent sysent[] = { { 0, 0, 0, sys_nosys }, /* 297 = unimplemented */ #endif - { 0, 0, SY_NOLOCK | 0, + { 0, 0, 0, sys_sched_yield }, /* 298 = sched_yield */ { 0, 0, SY_NOLOCK | 0, sys_getthrid }, /* 299 = getthrid */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index a230c9b59e7..d268e81ba51 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.179 2016/03/21 22:41:29 bluhm Exp $ */ +/* $OpenBSD: syscalls.c,v 1.180 2016/03/28 20:51:09 kettenis Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.166 2015/11/24 23:47:17 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.168 2016/03/28 20:49:58 kettenis Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index f9cf6faf2e7..66019d9c626 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.178 2016/03/21 22:41:29 bluhm Exp $ */ +/* $OpenBSD: syscall.h,v 1.179 2016/03/28 20:51:09 kettenis Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.166 2015/11/24 23:47:17 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.168 2016/03/28 20:49:58 kettenis Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index d8457312006..2bd760bbc9b 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.181 2016/03/21 22:41:29 bluhm Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.182 2016/03/28 20:51:09 kettenis Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.166 2015/11/24 23:47:17 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.168 2016/03/28 20:49:58 kettenis Exp */ #ifdef syscallarg |