Regenerate (added issetugid)

This commit is contained in:
Peter Wemm 1997-03-31 14:55:05 +00:00
parent 56f12a6cb5
commit 7ec6369d7e
5 changed files with 13 additions and 7 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.34 1997/03/31 12:14:48 peter Exp
* created from Id: syscalls.master,v 1.35 1997/03/31 14:52:50 peter Exp
*/
#include <sys/param.h>
@ -285,6 +285,6 @@ struct sysent sysent[] = {
{ 3, (sy_call_t *)minherit }, /* 250 = minherit */
{ 1, (sy_call_t *)rfork }, /* 251 = rfork */
{ 0, (sy_call_t *)nosys }, /* 252 = poll */
{ 0, (sy_call_t *)nosys }, /* 253 = issetugid */
{ 0, (sy_call_t *)issetugid }, /* 253 = issetugid */
{ 3, (sy_call_t *)lchown }, /* 254 = lchown */
};

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.34 1997/03/31 12:14:48 peter Exp
* created from Id: syscalls.master,v 1.35 1997/03/31 14:52:50 peter Exp
*/
char *syscallnames[] = {
@ -274,6 +274,6 @@ char *syscallnames[] = {
"minherit", /* 250 = minherit */
"rfork", /* 251 = rfork */
"#252", /* 252 = poll */
"#253", /* 253 = issetugid */
"issetugid", /* 253 = issetugid */
"lchown", /* 254 = lchown */
};

View File

@ -2,7 +2,7 @@
* System call hiders.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.34 1997/03/31 12:14:48 peter Exp
* created from Id: syscalls.master,v 1.35 1997/03/31 14:52:50 peter Exp
*/
HIDE_POSIX(fork)
@ -212,4 +212,5 @@ HIDE_BSD(shmdt)
HIDE_BSD(shmget)
HIDE_BSD(minherit)
HIDE_BSD(rfork)
HIDE_BSD(issetugid)
HIDE_BSD(lchown)

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.34 1997/03/31 12:14:48 peter Exp
* created from Id: syscalls.master,v 1.35 1997/03/31 14:52:50 peter Exp
*/
#define SYS_syscall 0
@ -206,5 +206,6 @@
#define SYS_shmget 231
#define SYS_minherit 250
#define SYS_rfork 251
#define SYS_issetugid 253
#define SYS_lchown 254
#define SYS_MAXSYSCALL 255

View File

@ -2,7 +2,7 @@
* System call prototypes.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.34 1997/03/31 12:14:48 peter Exp
* created from Id: syscalls.master,v 1.35 1997/03/31 14:52:50 peter Exp
*/
#ifndef _SYS_SYSPROTO_H_
@ -725,6 +725,9 @@ struct minherit_args {
struct rfork_args {
int flags;
};
struct issetugid_args {
int dummy;
};
struct lchown_args {
char * path;
int uid;
@ -900,6 +903,7 @@ int shmdt __P((struct proc *, struct shmdt_args *, int []));
int shmget __P((struct proc *, struct shmget_args *, int []));
int minherit __P((struct proc *, struct minherit_args *, int []));
int rfork __P((struct proc *, struct rfork_args *, int []));
int issetugid __P((struct proc *, struct issetugid_args *, int []));
int lchown __P((struct proc *, struct lchown_args *, int []));
#ifdef COMPAT_43