diff options
author | peter <peter@FreeBSD.org> | 1997-06-01 08:56:12 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-06-01 08:56:12 +0000 |
commit | 350e8e813e694df48b5b5fad6ae3fbc651d15a58 (patch) | |
tree | 4732723e1fde7d0a83e98606f38261de9c2432c5 | |
parent | 3f7a596546b0f76b363150a91953b643697af580 (diff) | |
download | FreeBSD-src-350e8e813e694df48b5b5fad6ae3fbc651d15a58.zip FreeBSD-src-350e8e813e694df48b5b5fad6ae3fbc651d15a58.tar.gz |
Regenerate
-rw-r--r-- | sys/kern/init_sysent.c | 3 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 3 | ||||
-rw-r--r-- | sys/sys/syscall-hide.h | 3 | ||||
-rw-r--r-- | sys/sys/syscall.h | 5 | ||||
-rw-r--r-- | sys/sys/sysproto.h | 8 |
5 files changed, 16 insertions, 6 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 5e947d0..2a92d91 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.38 1997/05/08 14:07:11 peter Exp + * created from Id: syscalls.master,v 1.39 1997/06/01 08:52:38 peter Exp */ #include <sys/param.h> @@ -345,4 +345,5 @@ struct sysent sysent[] = { { 0, (sy_call_t *)nosys }, /* 310 = getsid */ { 0, (sy_call_t *)nosys }, /* 311 = setresuid */ { 0, (sy_call_t *)nosys }, /* 312 = setresgid */ + { 3, (sy_call_t *)signanosleep }, /* 313 = signanosleep */ }; diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index d6feb3a..4dda7cf 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.38 1997/05/08 14:07:11 peter Exp + * created from Id: syscalls.master,v 1.39 1997/06/01 08:52:38 peter Exp */ char *syscallnames[] = { @@ -334,4 +334,5 @@ char *syscallnames[] = { "#310", /* 310 = getsid */ "#311", /* 311 = setresuid */ "#312", /* 312 = setresgid */ + "signanosleep", /* 313 = signanosleep */ }; diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h index bc1d187..e1d8420 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.38 1997/05/08 14:07:11 peter Exp + * created from Id: syscalls.master,v 1.39 1997/06/01 08:52:38 peter Exp */ HIDE_POSIX(fork) @@ -228,3 +228,4 @@ HIDE_BSD(kldfind) HIDE_BSD(kldnext) HIDE_BSD(kldstat) HIDE_BSD(kldfirstmod) +HIDE_BSD(signanosleep) diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 359af8b..3049384 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.38 1997/05/08 14:07:11 peter Exp + * created from Id: syscalls.master,v 1.39 1997/06/01 08:52:38 peter Exp */ #define SYS_syscall 0 @@ -222,4 +222,5 @@ #define SYS_kldnext 307 #define SYS_kldstat 308 #define SYS_kldfirstmod 309 -#define SYS_MAXSYSCALL 313 +#define SYS_signanosleep 313 +#define SYS_MAXSYSCALL 314 diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 3836a7c..fb6a79e 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.38 1997/05/08 14:07:11 peter Exp + * created from Id: syscalls.master,v 1.39 1997/06/01 08:52:38 peter Exp */ #ifndef _SYS_SYSPROTO_H_ @@ -781,6 +781,11 @@ struct kldstat_args { struct kldfirstmod_args { int fileid; }; +struct signanosleep_args { + const struct timespec * rqtp; + struct timespec * rmtp; + sigset_t * mask; +}; int nosys __P((struct proc *, struct nosys_args *, int [])); void exit __P((struct proc *, struct rexit_args *, int [])) __dead2; int fork __P((struct proc *, struct fork_args *, int [])); @@ -967,6 +972,7 @@ int kldfind __P((struct proc *, struct kldfind_args *, int [])); int kldnext __P((struct proc *, struct kldnext_args *, int [])); int kldstat __P((struct proc *, struct kldstat_args *, int [])); int kldfirstmod __P((struct proc *, struct kldfirstmod_args *, int [])); +int signanosleep __P((struct proc *, struct signanosleep_args *, int [])); #ifdef COMPAT_43 |