From d0cb29e22fedf364630e3af894a9ee1a2212e0b6 Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 14 May 1998 11:29:06 +0000 Subject: regen after signanosleep nuke --- sys/kern/init_sysent.c | 4 ++-- sys/kern/syscalls.c | 4 ++-- sys/sys/syscall-hide.h | 3 +-- sys/sys/syscall.h | 4 ++-- sys/sys/sysproto.h | 8 +------- 5 files changed, 8 insertions(+), 15 deletions(-) diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index b07b880..72a5cd1 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 Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp + * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp */ #include "opt_compat.h" @@ -332,7 +332,7 @@ struct sysent sysent[] = { { 1, (sy_call_t *)getsid }, /* 310 = getsid */ { 0, (sy_call_t *)nosys }, /* 311 = setresuid */ { 0, (sy_call_t *)nosys }, /* 312 = setresgid */ - { 3, (sy_call_t *)signanosleep }, /* 313 = signanosleep */ + { 0, (sy_call_t *)nosys }, /* 313 = obsolete signanosleep */ { 1, (sy_call_t *)aio_return }, /* 314 = aio_return */ { 3, (sy_call_t *)aio_suspend }, /* 315 = aio_suspend */ { 2, (sy_call_t *)aio_cancel }, /* 316 = aio_cancel */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index d295b20..fa9bc94 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 Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp + * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp */ char *syscallnames[] = { @@ -319,7 +319,7 @@ char *syscallnames[] = { "getsid", /* 310 = getsid */ "#311", /* 311 = setresuid */ "#312", /* 312 = setresgid */ - "signanosleep", /* 313 = signanosleep */ + "obs_signanosleep", /* 313 = obsolete signanosleep */ "aio_return", /* 314 = aio_return */ "aio_suspend", /* 315 = aio_suspend */ "aio_cancel", /* 316 = aio_cancel */ diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h index 799c187..8568293 100644 --- a/sys/sys/syscall-hide.h +++ b/sys/sys/syscall-hide.h @@ -2,7 +2,7 @@ * System call hiders. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp + * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp */ HIDE_POSIX(fork) @@ -225,7 +225,6 @@ HIDE_BSD(kldnext) HIDE_BSD(kldstat) HIDE_BSD(kldfirstmod) HIDE_BSD(getsid) -HIDE_BSD(signanosleep) HIDE_BSD(aio_return) HIDE_BSD(aio_suspend) HIDE_BSD(aio_cancel) diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index a29f082..b219da4 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 Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp + * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp */ #define SYS_syscall 0 @@ -230,7 +230,7 @@ #define SYS_kldstat 308 #define SYS_kldfirstmod 309 #define SYS_getsid 310 -#define SYS_signanosleep 313 + /* 313 is obsolete signanosleep */ #define SYS_aio_return 314 #define SYS_aio_suspend 315 #define SYS_aio_cancel 316 diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 0e7a8dc..b8616d1 100644 --- a/sys/sys/sysproto.h +++ b/sys/sys/sysproto.h @@ -2,7 +2,7 @@ * System call prototypes. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp + * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp */ #ifndef _SYS_SYSPROTO_H_ @@ -797,11 +797,6 @@ struct kldfirstmod_args { struct getsid_args { pid_t pid; }; -struct signanosleep_args { - const struct timespec * rqtp; - struct timespec * rmtp; - sigset_t * mask; -}; struct aio_return_args { struct aiocb * aiocbp; }; @@ -1064,7 +1059,6 @@ int kldnext __P((struct proc *, struct kldnext_args *)); int kldstat __P((struct proc *, struct kldstat_args *)); int kldfirstmod __P((struct proc *, struct kldfirstmod_args *)); int getsid __P((struct proc *, struct getsid_args *)); -int signanosleep __P((struct proc *, struct signanosleep_args *)); int aio_return __P((struct proc *, struct aio_return_args *)); int aio_suspend __P((struct proc *, struct aio_suspend_args *)); int aio_cancel __P((struct proc *, struct aio_cancel_args *)); -- cgit v1.1