summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2011-06-01 06:22:40 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2011-06-01 06:22:40 +0000
commit5fe0663ee83160c283780c5c74b6087e50fbc3c9 (patch)
tree054f9ec4a397e8c7a73ccca322b4570862bc20c1 /sys
parentf16de09e83ff2e5564ee10ec235efb2e25147f82 (diff)
regenerate
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/init_sysent.c20
-rw-r--r--sys/kern/syscalls.c4
-rw-r--r--sys/sys/syscall.h4
-rw-r--r--sys/sys/syscallargs.h4
4 files changed, 16 insertions, 16 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 4c937d00cb4..49035153a91 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.117 2011/04/04 12:44:43 deraadt Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.118 2011/06/01 06:22:39 guenther Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.105 2011/04/04 12:44:10 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.107 2011/06/01 06:20:41 guenther Exp
*/
#include <sys/param.h>
@@ -89,7 +89,7 @@ struct sysent sysent[] = {
compat_25(sys_getfsstat) }, /* 18 = compat_25 ogetfsstat */
{ 3, s(struct compat_43_sys_lseek_args), 0,
compat_43(sys_lseek) }, /* 19 = compat_43 olseek */
- { 0, 0, SY_NOLOCK | 0,
+ { 0, 0, 0,
sys_getpid }, /* 20 = getpid */
{ 4, s(struct sys_mount_args), 0,
sys_mount }, /* 21 = mount */
@@ -296,7 +296,7 @@ struct sysent sysent[] = {
compat_43(sys_sendmsg) }, /* 114 = compat_43 osendmsg */
{ 0, 0, 0,
sys_nosys }, /* 115 = obsolete vtrace */
- { 2, s(struct sys_gettimeofday_args), 0,
+ { 2, s(struct sys_gettimeofday_args), SY_NOLOCK | 0,
sys_gettimeofday }, /* 116 = gettimeofday */
{ 2, s(struct sys_getrusage_args), 0,
sys_getrusage }, /* 117 = getrusage */
@@ -615,11 +615,11 @@ struct sysent sysent[] = {
{ 0, 0, 0,
sys_nosys }, /* 231 = unimplemented shmget */
#endif
- { 2, s(struct sys_clock_gettime_args), 0,
+ { 2, s(struct sys_clock_gettime_args), SY_NOLOCK | 0,
sys_clock_gettime }, /* 232 = clock_gettime */
{ 2, s(struct sys_clock_settime_args), 0,
sys_clock_settime }, /* 233 = clock_settime */
- { 2, s(struct sys_clock_getres_args), 0,
+ { 2, s(struct sys_clock_getres_args), SY_NOLOCK | 0,
sys_clock_getres }, /* 234 = clock_getres */
{ 0, 0, 0,
sys_nosys }, /* 235 = unimplemented timer_create */
@@ -631,7 +631,7 @@ struct sysent sysent[] = {
sys_nosys }, /* 238 = unimplemented timer_gettime */
{ 0, 0, 0,
sys_nosys }, /* 239 = unimplemented timer_getoverrun */
- { 2, s(struct sys_nanosleep_args), 0,
+ { 2, s(struct sys_nanosleep_args), SY_NOLOCK | 0,
sys_nanosleep }, /* 240 = nanosleep */
{ 0, 0, 0,
sys_nosys }, /* 241 = unimplemented */
@@ -657,7 +657,7 @@ struct sysent sysent[] = {
sys_rfork }, /* 251 = rfork */
{ 3, s(struct sys_poll_args), 0,
sys_poll }, /* 252 = poll */
- { 0, 0, 0,
+ { 0, 0, SY_NOLOCK | 0,
sys_issetugid }, /* 253 = issetugid */
{ 3, s(struct sys_lchown_args), 0,
sys_lchown }, /* 254 = lchown */
@@ -787,9 +787,9 @@ struct sysent sysent[] = {
{ 0, 0, 0,
sys_nosys }, /* 297 = unimplemented */
#endif
- { 0, 0, 0,
+ { 0, 0, SY_NOLOCK | 0,
sys_sched_yield }, /* 298 = sched_yield */
- { 0, 0, 0,
+ { 0, 0, SY_NOLOCK | 0,
sys_getthrid }, /* 299 = getthrid */
{ 4, s(struct sys_thrsleep_args), 0,
sys_thrsleep }, /* 300 = thrsleep */
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 2c421614f82..d8694fa0895 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.118 2011/04/04 12:44:43 deraadt Exp $ */
+/* $OpenBSD: syscalls.c,v 1.119 2011/06/01 06:22:39 guenther Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.105 2011/04/04 12:44:10 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.107 2011/06/01 06:20:41 guenther Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index c338ac745bf..26d1c92e922 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.117 2011/04/04 12:44:43 deraadt Exp $ */
+/* $OpenBSD: syscall.h,v 1.118 2011/06/01 06:22:39 guenther Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.105 2011/04/04 12:44:10 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.107 2011/06/01 06:20:41 guenther Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index 6a7458d8914..75ba7b422b3 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.119 2011/04/04 12:44:43 deraadt Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.120 2011/06/01 06:22:39 guenther Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.105 2011/04/04 12:44:10 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.107 2011/06/01 06:20:41 guenther Exp
*/
#ifdef syscallarg