summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-04-19 01:36:38 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-04-19 01:36:38 +0000
commit5b0ed4d2f5a0066386a5102fa4ef98cbb17df29b (patch)
treef226434bd71cf44de98c7fa7780fec8afbb28523
parent76067dc38b59d22fa68139e9e0f6387455213fef (diff)
ran makesyscalls.sh
-rw-r--r--sys/sys/syscall.h4
-rw-r--r--sys/sys/syscallargs.h12
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index db2e547994b..9cbe6ab830e 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.31 1996/02/27 04:20:41 jonathan Exp
+ * created from NetBSD: syscalls.master,v 1.30 1995/11/22 23:07:29 cgd Exp
*/
#define SYS_syscall 0
@@ -167,8 +167,8 @@
/* 169 is compat_10 osemsys */
/* 170 is compat_10 omsgsys */
/* 171 is compat_10 oshmsys */
-#define SYS_ntp_gettime 175
#define SYS_ntp_adjtime 176
+#define SYS_ntp_gettime 177
#define SYS_setgid 181
#define SYS_setegid 182
#define SYS_seteuid 183
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index b2113be847f..00f6192852c 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.31 1996/02/27 04:20:41 jonathan Exp
+ * created from NetBSD: syscalls.master,v 1.30 1995/11/22 23:07:29 cgd Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -741,12 +741,12 @@ struct compat_10_sys_shmsys_args {
syscallarg(int) a4;
};
-struct ntp_gettime_args {
+struct sys_ntp_adjtime_args {
syscallarg(struct timex *) tp;
};
-struct ntp_adjtime_args {
- syscallarg(struct timex *) tp;
+struct sys_ntp_gettime_args {
+ syscallarg(struct ntptimeval *) tp;
};
struct sys_setgid_args {
@@ -1136,8 +1136,8 @@ int compat_10_sys_msgsys __P((struct proc *, void *, register_t *));
int compat_10_sys_shmsys __P((struct proc *, void *, register_t *));
#else
#endif
-int ntp_gettime __P((struct proc *, void *, register_t *));
-int ntp_adjtime __P((struct proc *, void *, register_t *));
+int sys_ntp_adjtime __P((struct proc *, void *, register_t *));
+int sys_ntp_gettime __P((struct proc *, void *, register_t *));
int sys_setgid __P((struct proc *, void *, register_t *));
int sys_setegid __P((struct proc *, void *, register_t *));
int sys_seteuid __P((struct proc *, void *, register_t *));