Regenerate
This commit is contained in:
parent
6871cc6262
commit
217cb20cdc
@ -2,7 +2,7 @@
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.40 1997/06/16 00:29:32 dyson Exp
|
||||
* created from Id: syscalls.master,v 1.41 1997/08/19 05:53:48 peter Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -239,7 +239,7 @@ struct sysent sysent[] = {
|
||||
{ 2, (sy_call_t *)munlock }, /* 204 = munlock */
|
||||
{ 2, (sy_call_t *)utrace }, /* 205 = utrace */
|
||||
{ 1, (sy_call_t *)undelete }, /* 206 = undelete */
|
||||
{ 0, (sy_call_t *)nosys }, /* 207 = getpgid */
|
||||
{ 1, (sy_call_t *)getpgid }, /* 207 = getpgid */
|
||||
{ 0, (sy_call_t *)nosys }, /* 208 = newreboot */
|
||||
{ 0, (sy_call_t *)nosys }, /* 209 = poll2 */
|
||||
{ 0, (sy_call_t *)lkmnosys }, /* 210 = lkmnosys */
|
||||
@ -342,7 +342,7 @@ struct sysent sysent[] = {
|
||||
{ 1, (sy_call_t *)kldnext }, /* 307 = kldnext */
|
||||
{ 2, (sy_call_t *)kldstat }, /* 308 = kldstat */
|
||||
{ 1, (sy_call_t *)kldfirstmod }, /* 309 = kldfirstmod */
|
||||
{ 0, (sy_call_t *)nosys }, /* 310 = getsid */
|
||||
{ 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 */
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.40 1997/06/16 00:29:32 dyson Exp
|
||||
* created from Id: syscalls.master,v 1.41 1997/08/19 05:53:48 peter Exp
|
||||
*/
|
||||
|
||||
char *syscallnames[] = {
|
||||
@ -228,7 +228,7 @@ char *syscallnames[] = {
|
||||
"munlock", /* 204 = munlock */
|
||||
"utrace", /* 205 = utrace */
|
||||
"undelete", /* 206 = undelete */
|
||||
"#207", /* 207 = getpgid */
|
||||
"getpgid", /* 207 = getpgid */
|
||||
"#208", /* 208 = newreboot */
|
||||
"#209", /* 209 = poll2 */
|
||||
"lkmnosys", /* 210 = lkmnosys */
|
||||
@ -331,7 +331,7 @@ char *syscallnames[] = {
|
||||
"kldnext", /* 307 = kldnext */
|
||||
"kldstat", /* 308 = kldstat */
|
||||
"kldfirstmod", /* 309 = kldfirstmod */
|
||||
"#310", /* 310 = getsid */
|
||||
"getsid", /* 310 = getsid */
|
||||
"#311", /* 311 = setresuid */
|
||||
"#312", /* 312 = setresgid */
|
||||
"signanosleep", /* 313 = signanosleep */
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call hiders.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.40 1997/06/16 00:29:32 dyson Exp
|
||||
* created from Id: syscalls.master,v 1.41 1997/08/19 05:53:48 peter Exp
|
||||
*/
|
||||
|
||||
HIDE_POSIX(fork)
|
||||
@ -198,6 +198,7 @@ HIDE_BSD(mlock)
|
||||
HIDE_BSD(munlock)
|
||||
HIDE_BSD(utrace)
|
||||
HIDE_BSD(undelete)
|
||||
HIDE_BSD(getpgid)
|
||||
HIDE_BSD(__semctl)
|
||||
HIDE_BSD(semget)
|
||||
HIDE_BSD(semop)
|
||||
@ -228,6 +229,7 @@ HIDE_BSD(kldfind)
|
||||
HIDE_BSD(kldnext)
|
||||
HIDE_BSD(kldstat)
|
||||
HIDE_BSD(kldfirstmod)
|
||||
HIDE_BSD(getsid)
|
||||
HIDE_BSD(signanosleep)
|
||||
HIDE_BSD(aio_return)
|
||||
HIDE_BSD(aio_suspend)
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.40 1997/06/16 00:29:32 dyson Exp
|
||||
* created from Id: syscalls.master,v 1.41 1997/08/19 05:53:48 peter Exp
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
@ -192,6 +192,7 @@
|
||||
#define SYS_munlock 204
|
||||
#define SYS_utrace 205
|
||||
#define SYS_undelete 206
|
||||
#define SYS_getpgid 207
|
||||
#define SYS___semctl 220
|
||||
#define SYS_semget 221
|
||||
#define SYS_semop 222
|
||||
@ -222,6 +223,7 @@
|
||||
#define SYS_kldnext 307
|
||||
#define SYS_kldstat 308
|
||||
#define SYS_kldfirstmod 309
|
||||
#define SYS_getsid 310
|
||||
#define SYS_signanosleep 313
|
||||
#define SYS_aio_return 314
|
||||
#define SYS_aio_suspend 315
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call prototypes.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.40 1997/06/16 00:29:32 dyson Exp
|
||||
* created from Id: syscalls.master,v 1.41 1997/08/19 05:53:48 peter Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
@ -658,6 +658,9 @@ struct utrace_args {
|
||||
struct undelete_args {
|
||||
char * path;
|
||||
};
|
||||
struct getpgid_args {
|
||||
pid_t pid;
|
||||
};
|
||||
struct __semctl_args {
|
||||
int semid;
|
||||
int semnum;
|
||||
@ -781,6 +784,9 @@ struct kldstat_args {
|
||||
struct kldfirstmod_args {
|
||||
int fileid;
|
||||
};
|
||||
struct getsid_args {
|
||||
pid_t pid;
|
||||
};
|
||||
struct signanosleep_args {
|
||||
const struct timespec * rqtp;
|
||||
struct timespec * rmtp;
|
||||
@ -983,6 +989,7 @@ int mlock __P((struct proc *, struct mlock_args *, int []));
|
||||
int munlock __P((struct proc *, struct munlock_args *, int []));
|
||||
int utrace __P((struct proc *, struct utrace_args *, int []));
|
||||
int undelete __P((struct proc *, struct undelete_args *, int []));
|
||||
int getpgid __P((struct proc *, struct getpgid_args *, int []));
|
||||
int lkmnosys __P((struct proc *, struct nosys_args *, int []));
|
||||
int __semctl __P((struct proc *, struct __semctl_args *, int []));
|
||||
int semget __P((struct proc *, struct semget_args *, int []));
|
||||
@ -1014,6 +1021,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 getsid __P((struct proc *, struct getsid_args *, int []));
|
||||
int signanosleep __P((struct proc *, struct signanosleep_args *, int []));
|
||||
int aio_return __P((struct proc *, struct aio_return_args *, int []));
|
||||
int aio_suspend __P((struct proc *, struct aio_suspend_args *, int []));
|
||||
|
Loading…
Reference in New Issue
Block a user