regen after signanosleep nuke
This commit is contained in:
parent
786cf38a29
commit
06b6493558
@ -2,7 +2,7 @@
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
|
||||
* created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -332,7 +332,7 @@ struct sysent sysent[] = {
|
||||
{ 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 */
|
||||
{ 0, (sy_call_t *)nosys }, /* 313 = obsolete signanosleep */
|
||||
{ 1, (sy_call_t *)aio_return }, /* 314 = aio_return */
|
||||
{ 3, (sy_call_t *)aio_suspend }, /* 315 = aio_suspend */
|
||||
{ 2, (sy_call_t *)aio_cancel }, /* 316 = aio_cancel */
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
|
||||
* created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
|
||||
*/
|
||||
|
||||
char *syscallnames[] = {
|
||||
@ -319,7 +319,7 @@ char *syscallnames[] = {
|
||||
"getsid", /* 310 = getsid */
|
||||
"#311", /* 311 = setresuid */
|
||||
"#312", /* 312 = setresgid */
|
||||
"signanosleep", /* 313 = signanosleep */
|
||||
"obs_signanosleep", /* 313 = obsolete signanosleep */
|
||||
"aio_return", /* 314 = aio_return */
|
||||
"aio_suspend", /* 315 = aio_suspend */
|
||||
"aio_cancel", /* 316 = aio_cancel */
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call hiders.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
|
||||
* created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
|
||||
*/
|
||||
|
||||
HIDE_POSIX(fork)
|
||||
@ -225,7 +225,6 @@ HIDE_BSD(kldnext)
|
||||
HIDE_BSD(kldstat)
|
||||
HIDE_BSD(kldfirstmod)
|
||||
HIDE_BSD(getsid)
|
||||
HIDE_BSD(signanosleep)
|
||||
HIDE_BSD(aio_return)
|
||||
HIDE_BSD(aio_suspend)
|
||||
HIDE_BSD(aio_cancel)
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
|
||||
* created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
@ -230,7 +230,7 @@
|
||||
#define SYS_kldstat 308
|
||||
#define SYS_kldfirstmod 309
|
||||
#define SYS_getsid 310
|
||||
#define SYS_signanosleep 313
|
||||
/* 313 is obsolete signanosleep */
|
||||
#define SYS_aio_return 314
|
||||
#define SYS_aio_suspend 315
|
||||
#define SYS_aio_cancel 316
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call prototypes.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
|
||||
* created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
@ -797,11 +797,6 @@ struct kldfirstmod_args {
|
||||
struct getsid_args {
|
||||
pid_t pid;
|
||||
};
|
||||
struct signanosleep_args {
|
||||
const struct timespec * rqtp;
|
||||
struct timespec * rmtp;
|
||||
sigset_t * mask;
|
||||
};
|
||||
struct aio_return_args {
|
||||
struct aiocb * aiocbp;
|
||||
};
|
||||
@ -1064,7 +1059,6 @@ int kldnext __P((struct proc *, struct kldnext_args *));
|
||||
int kldstat __P((struct proc *, struct kldstat_args *));
|
||||
int kldfirstmod __P((struct proc *, struct kldfirstmod_args *));
|
||||
int getsid __P((struct proc *, struct getsid_args *));
|
||||
int signanosleep __P((struct proc *, struct signanosleep_args *));
|
||||
int aio_return __P((struct proc *, struct aio_return_args *));
|
||||
int aio_suspend __P((struct proc *, struct aio_suspend_args *));
|
||||
int aio_cancel __P((struct proc *, struct aio_cancel_args *));
|
||||
|
Loading…
Reference in New Issue
Block a user