diff options
author | peter <peter@FreeBSD.org> | 1997-03-31 14:55:05 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-03-31 14:55:05 +0000 |
commit | db3b5e918097f96d157f1b583a6b54c7b6ac53d9 (patch) | |
tree | 2d7603ed74454c809c22ef1ef8c34ab9f347a5bf | |
parent | 86d044a44ec7f30d7ed338c9d7e899f51e5812e7 (diff) | |
download | FreeBSD-src-db3b5e918097f96d157f1b583a6b54c7b6ac53d9.zip FreeBSD-src-db3b5e918097f96d157f1b583a6b54c7b6ac53d9.tar.gz |
Regenerate (added issetugid)
-rw-r--r-- | sys/kern/init_sysent.c | 4 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 4 | ||||
-rw-r--r-- | sys/sys/syscall-hide.h | 3 | ||||
-rw-r--r-- | sys/sys/syscall.h | 3 | ||||
-rw-r--r-- | sys/sys/sysproto.h | 6 |
5 files changed, 13 insertions, 7 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 76afc65..21291c9 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.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 */ }; diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 2b6a3b8..a3cd101 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.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 */ }; diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h index b8f31ef..99f9f46 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.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) diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 01f2340..1ae2aa1 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.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 diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 6775762..ba02baf 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.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 |