Regenerate
This commit is contained in:
parent
17c974499c
commit
550ca2a8a3
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 197636 2009-09-30 08:46:01Z rwatson
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 198508 2009-10-27 10:55:34Z kib
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
@ -428,4 +428,5 @@
|
||||
#define SYS_msgctl 511
|
||||
#define SYS_shmctl 512
|
||||
#define SYS_lpathconf 513
|
||||
#define SYS_MAXSYSCALL 522
|
||||
#define SYS_pselect 522
|
||||
#define SYS_MAXSYSCALL 523
|
||||
|
@ -1,7 +1,7 @@
|
||||
# FreeBSD system call names.
|
||||
# DO NOT EDIT-- this file is automatically generated.
|
||||
# $FreeBSD$
|
||||
# created from FreeBSD: head/sys/kern/syscalls.master 197636 2009-09-30 08:46:01Z rwatson
|
||||
# created from FreeBSD: head/sys/kern/syscalls.master 198508 2009-10-27 10:55:34Z kib
|
||||
MIASM = \
|
||||
syscall.o \
|
||||
exit.o \
|
||||
@ -376,4 +376,5 @@ MIASM = \
|
||||
__semctl.o \
|
||||
msgctl.o \
|
||||
shmctl.o \
|
||||
lpathconf.o
|
||||
lpathconf.o \
|
||||
pselect.o
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 197636 2009-09-30 08:46:01Z rwatson
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 198508 2009-10-27 10:55:34Z kib
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
@ -1641,6 +1641,14 @@ struct lpathconf_args {
|
||||
char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
|
||||
char name_l_[PADL_(int)]; int name; char name_r_[PADR_(int)];
|
||||
};
|
||||
struct pselect_args {
|
||||
char nd_l_[PADL_(int)]; int nd; char nd_r_[PADR_(int)];
|
||||
char in_l_[PADL_(fd_set *)]; fd_set * in; char in_r_[PADR_(fd_set *)];
|
||||
char ou_l_[PADL_(fd_set *)]; fd_set * ou; char ou_r_[PADR_(fd_set *)];
|
||||
char ex_l_[PADL_(fd_set *)]; fd_set * ex; char ex_r_[PADR_(fd_set *)];
|
||||
char ts_l_[PADL_(const struct timespec *)]; const struct timespec * ts; char ts_r_[PADR_(const struct timespec *)];
|
||||
char sm_l_[PADL_(const sigset_t *)]; const sigset_t * sm; char sm_r_[PADR_(const sigset_t *)];
|
||||
};
|
||||
int nosys(struct thread *, struct nosys_args *);
|
||||
void sys_exit(struct thread *, struct sys_exit_args *);
|
||||
int fork(struct thread *, struct fork_args *);
|
||||
@ -1999,6 +2007,7 @@ int __semctl(struct thread *, struct __semctl_args *);
|
||||
int msgctl(struct thread *, struct msgctl_args *);
|
||||
int shmctl(struct thread *, struct shmctl_args *);
|
||||
int lpathconf(struct thread *, struct lpathconf_args *);
|
||||
int pselect(struct thread *, struct pselect_args *);
|
||||
|
||||
#ifdef COMPAT_43
|
||||
|
||||
@ -2671,6 +2680,7 @@ int freebsd7_shmctl(struct thread *, struct freebsd7_shmctl_args *);
|
||||
#define SYS_AUE_msgctl AUE_MSGCTL
|
||||
#define SYS_AUE_shmctl AUE_SHMCTL
|
||||
#define SYS_AUE_lpathconf AUE_LPATHCONF
|
||||
#define SYS_AUE_pselect AUE_SELECT
|
||||
|
||||
#undef PAD_
|
||||
#undef PADL_
|
||||
|
Loading…
x
Reference in New Issue
Block a user