diff options
author | 2011-07-09 00:18:15 +0000 | |
---|---|---|
committer | 2011-07-09 00:18:15 +0000 | |
commit | a75ff214b112cd54d023ba4c62305ca0fbea6c45 (patch) | |
tree | d5ce7fa0a8d737115d7c49e5e36b8c5623ccb5ca | |
parent | mark an obsolete call with the release we killed it; reminded by tedu (diff) | |
download | wireguard-openbsd-a75ff214b112cd54d023ba4c62305ca0fbea6c45.tar.xz wireguard-openbsd-a75ff214b112cd54d023ba4c62305ca0fbea6c45.zip |
sync
-rw-r--r-- | sys/kern/init_sysent.c | 6 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 6 | ||||
-rw-r--r-- | sys/sys/syscall.h | 6 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 4 |
4 files changed, 11 insertions, 11 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 311145fee49..a483c457cc9 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.126 2011/07/09 00:11:28 deraadt Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.127 2011/07/09 00:18:15 deraadt Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.114 2011/07/09 00:10:51 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.115 2011/07/09 00:18:06 deraadt Exp */ #include <sys/param.h> @@ -356,7 +356,7 @@ struct sysent sysent[] = { { 0, 0, 0, sys_nosys }, /* 157 = obsolete statfs25 */ { 0, 0, 0, - sys_nosys }, /* 158 = obsolete fstatfs */ + sys_nosys }, /* 158 = obsolete fstatfs25 */ { 0, 0, 0, sys_nosys }, /* 159 = unimplemented */ { 0, 0, 0, diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index f1846190a55..c8676c0c5c0 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.127 2011/07/09 00:11:28 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.128 2011/07/09 00:18:15 deraadt Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.114 2011/07/09 00:10:51 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.115 2011/07/09 00:18:06 deraadt Exp */ char *syscallnames[] = { @@ -182,7 +182,7 @@ char *syscallnames[] = { #endif "#156 (obsolete ogetdirentries)", /* 156 = obsolete ogetdirentries */ "#157 (obsolete statfs25)", /* 157 = obsolete statfs25 */ - "#158 (obsolete fstatfs)", /* 158 = obsolete fstatfs */ + "#158 (obsolete fstatfs25)", /* 158 = obsolete fstatfs25 */ "#159 (unimplemented)", /* 159 = unimplemented */ "#160 (unimplemented)", /* 160 = unimplemented */ "getfh", /* 161 = getfh */ diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 4fcf93a8af3..fe3824335cc 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.126 2011/07/09 00:11:28 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.127 2011/07/09 00:18:15 deraadt Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.114 2011/07/09 00:10:51 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.115 2011/07/09 00:18:06 deraadt Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -367,7 +367,7 @@ /* 156 is obsolete ogetdirentries */ /* 157 is obsolete statfs25 */ - /* 158 is obsolete fstatfs */ + /* 158 is obsolete fstatfs25 */ /* syscall: "getfh" ret: "int" args: "const char *" "fhandle_t *" */ #define SYS_getfh 161 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index ddb7597d9cd..2190bbdcbee 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.128 2011/07/09 00:11:28 deraadt Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.129 2011/07/09 00:18:15 deraadt Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.114 2011/07/09 00:10:51 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.115 2011/07/09 00:18:06 deraadt Exp */ #ifdef syscallarg |