Regenerate

This commit is contained in:
Peter Wemm 1997-06-01 08:56:12 +00:00
parent 99f06d5c02
commit 83a6ec5e6a
5 changed files with 16 additions and 6 deletions

View File

@ -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 */
};

View File

@ -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 */
};

View File

@ -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)

View File

@ -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

View File

@ -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