summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2009-10-27 11:01:40 +0000
committerkib <kib@FreeBSD.org>2009-10-27 11:01:40 +0000
commitf8a2899489ac68d7786eb5346380fafbfaf7530c (patch)
tree7f70933f2bfa3cdc3db1d16d5d9ea6f0082275b4
parentb9e3d584a1551a501adc0694fe4eae5a9bbd2e79 (diff)
downloadFreeBSD-src-f8a2899489ac68d7786eb5346380fafbfaf7530c.zip
FreeBSD-src-f8a2899489ac68d7786eb5346380fafbfaf7530c.tar.gz
Regenerate
-rw-r--r--sys/sys/syscall.h5
-rw-r--r--sys/sys/syscall.mk5
-rw-r--r--sys/sys/sysproto.h12
3 files changed, 17 insertions, 5 deletions
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index c14a643..865107a 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -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
diff --git a/sys/sys/syscall.mk b/sys/sys/syscall.mk
index 3d4fb5f..4953adc 100644
--- a/sys/sys/syscall.mk
+++ b/sys/sys/syscall.mk
@@ -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
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 52e342d..a97a0ae 100644
--- a/sys/sys/sysproto.h
+++ b/sys/sys/sysproto.h
@@ -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_
OpenPOWER on IntegriCloud