From aff3ebfe321e46bf330a5d50adced4ae171aa878 Mon Sep 17 00:00:00 2001 From: deraadt Date: Fri, 19 Apr 1996 01:36:35 +0000 Subject: [PATCH] ran makesyscalls.sh --- sys/sys/syscall.h | 4 ++-- sys/sys/syscallargs.h | 12 ++++++------ 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 *)); -- 2.20.1