summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-08-29 20:45:28 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-08-29 20:45:28 +0000
commit2723274c5d03601136758ab9fa17c0c4ee96574d (patch)
treec698943d6c9dd952148ed9ea16fcf4a6a6250acb
parent184dadc077288865cd826c567a64543547188eb8 (diff)
regen for prefix ntp system calls with sys_ like other system calls
-rw-r--r--sys/compat/svr4/svr4_syscall.h2
-rw-r--r--sys/compat/svr4/svr4_syscallargs.h6
-rw-r--r--sys/compat/svr4/svr4_syscalls.c2
-rw-r--r--sys/compat/svr4/svr4_sysent.c10
-rw-r--r--sys/kern/init_sysent.c10
-rw-r--r--sys/kern/syscalls.c2
6 files changed, 16 insertions, 16 deletions
diff --git a/sys/compat/svr4/svr4_syscall.h b/sys/compat/svr4/svr4_syscall.h
index e922fa8c21e..e6758a6d4f0 100644
--- a/sys/compat/svr4/svr4_syscall.h
+++ b/sys/compat/svr4/svr4_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.17 1997/08/29 20:36:13 kstailey Exp
+ * created from OpenBSD: syscalls.master,v 1.18 1997/08/29 20:44:26 kstailey Exp
*/
#define SVR4_SYS_syscall 0
diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h
index abfd0340279..e2d08b080f7 100644
--- a/sys/compat/svr4/svr4_syscallargs.h
+++ b/sys/compat/svr4/svr4_syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.17 1997/08/29 20:36:13 kstailey Exp
+ * created from OpenBSD: syscalls.master,v 1.18 1997/08/29 20:44:26 kstailey Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -502,7 +502,7 @@ int compat_43_sys_getsockname __P((struct proc *, void *, register_t *));
int sys_getsockopt __P((struct proc *, void *, register_t *));
int sys_setsockopt __P((struct proc *, void *, register_t *));
#ifdef NTP
-int ntp_gettime __P((struct proc *, void *, register_t *));
-int ntp_adjtime __P((struct proc *, void *, register_t *));
+int sys_ntp_gettime __P((struct proc *, void *, register_t *));
+int sys_ntp_adjtime __P((struct proc *, void *, register_t *));
#else
#endif
diff --git a/sys/compat/svr4/svr4_syscalls.c b/sys/compat/svr4/svr4_syscalls.c
index 90cd4866f32..1aa5ecc9f45 100644
--- a/sys/compat/svr4/svr4_syscalls.c
+++ b/sys/compat/svr4/svr4_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.17 1997/08/29 20:36:13 kstailey Exp
+ * created from OpenBSD: syscalls.master,v 1.18 1997/08/29 20:44:26 kstailey Exp
*/
char *svr4_syscallnames[] = {
diff --git a/sys/compat/svr4/svr4_sysent.c b/sys/compat/svr4/svr4_sysent.c
index d3ce8b0b8cc..82d42bc7eea 100644
--- a/sys/compat/svr4/svr4_sysent.c
+++ b/sys/compat/svr4/svr4_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.17 1997/08/29 20:36:13 kstailey Exp
+ * created from OpenBSD: syscalls.master,v 1.18 1997/08/29 20:44:26 kstailey Exp
*/
#include <sys/param.h>
@@ -556,10 +556,10 @@ struct sysent svr4_sysent[] = {
{ 0, 0,
sys_nosys }, /* 247 = unimplemented sockconfig */
#ifdef NTP
- { 1, s(struct ntp_gettime_args),
- ntp_gettime }, /* 248 = ntp_gettime */
- { 1, s(struct ntp_adjtime_args),
- ntp_adjtime }, /* 249 = ntp_adjtime */
+ { 1, s(struct sys_ntp_gettime_args),
+ sys_ntp_gettime }, /* 248 = ntp_gettime */
+ { 1, s(struct sys_ntp_adjtime_args),
+ sys_ntp_adjtime }, /* 249 = ntp_adjtime */
#else
{ 0, 0,
sys_nosys }, /* 248 = unimplemented ntp_gettime */
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 9512168d22a..800cb975353 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.15 1997/05/30 21:43:33 kstailey Exp
+ * created from OpenBSD: syscalls.master,v 1.16 1997/08/29 20:44:24 kstailey Exp
*/
#include <sys/param.h>
@@ -419,10 +419,10 @@ struct sysent sysent[] = {
{ 0, 0,
sys_nosys }, /* 174 = unimplemented */
#ifdef NTP
- { 1, s(struct ntp_gettime_args),
- ntp_gettime }, /* 175 = ntp_gettime */
- { 1, s(struct ntp_adjtime_args),
- ntp_adjtime }, /* 176 = ntp_adjtime */
+ { 1, s(struct sys_ntp_gettime_args),
+ sys_ntp_gettime }, /* 175 = ntp_gettime */
+ { 1, s(struct sys_ntp_adjtime_args),
+ sys_ntp_adjtime }, /* 176 = ntp_adjtime */
#else
{ 0, 0,
sys_nosys }, /* 175 = unimplemented ntp_gettime */
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 45b989506cf..82cdb12ae98 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.15 1997/05/30 21:43:33 kstailey Exp
+ * created from OpenBSD: syscalls.master,v 1.16 1997/08/29 20:44:24 kstailey Exp
*/
char *syscallnames[] = {