aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/sysproto.h
diff options
context:
space:
mode:
authorJonathan Anderson <jonathan@FreeBSD.org>2011-08-18 23:08:52 +0000
committerJonathan Anderson <jonathan@FreeBSD.org>2011-08-18 23:08:52 +0000
commitf8ca0a757a94cb4b491dbe5f1162dc61e82172b6 (patch)
tree33acf74011823403388b5bb93d514f0c56e7fc0d /sys/sys/sysproto.h
parentcfb5f76865887cb85825ed970b8bbc4ab2448b5d (diff)
downloadsrc-f8ca0a757a94cb4b491dbe5f1162dc61e82172b6.tar.gz
src-f8ca0a757a94cb4b491dbe5f1162dc61e82172b6.zip
Auto-generated system call code based on r224987.
Approved by: re (implicit)
Notes
Notes: svn path=/head/; revision=224988
Diffstat (limited to 'sys/sys/sysproto.h')
-rw-r--r--sys/sys/sysproto.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 7f8d5b39b7fb..9bcb79bd0aec 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 224066 2011-07-15 18:26:19Z jonathan
+ * created from FreeBSD: head/sys/kern/syscalls.master 224987 2011-08-18 22:51:30Z jonathan
*/
#ifndef _SYS_SYSPROTO_H_
@@ -1671,6 +1671,18 @@ struct cap_enter_args {
struct cap_getmode_args {
char modep_l_[PADL_(u_int *)]; u_int * modep; char modep_r_[PADR_(u_int *)];
};
+struct pdfork_args {
+ char fdp_l_[PADL_(int *)]; int * fdp; char fdp_r_[PADR_(int *)];
+ char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
+};
+struct pdkill_args {
+ char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
+ char signum_l_[PADL_(int)]; int signum; char signum_r_[PADR_(int)];
+};
+struct pdgetpid_args {
+ char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
+ char pidp_l_[PADL_(pid_t *)]; pid_t * pidp; char pidp_r_[PADR_(pid_t *)];
+};
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 *)];
@@ -2085,6 +2097,9 @@ int cap_new(struct thread *, struct cap_new_args *);
int cap_getrights(struct thread *, struct cap_getrights_args *);
int cap_enter(struct thread *, struct cap_enter_args *);
int cap_getmode(struct thread *, struct cap_getmode_args *);
+int pdfork(struct thread *, struct pdfork_args *);
+int pdkill(struct thread *, struct pdkill_args *);
+int pdgetpid(struct thread *, struct pdgetpid_args *);
int pselect(struct thread *, struct pselect_args *);
int getloginclass(struct thread *, struct getloginclass_args *);
int setloginclass(struct thread *, struct setloginclass_args *);
@@ -2772,6 +2787,9 @@ int freebsd7_shmctl(struct thread *, struct freebsd7_shmctl_args *);
#define SYS_AUE_cap_getrights AUE_CAP_GETRIGHTS
#define SYS_AUE_cap_enter AUE_CAP_ENTER
#define SYS_AUE_cap_getmode AUE_CAP_GETMODE
+#define SYS_AUE_pdfork AUE_PDFORK
+#define SYS_AUE_pdkill AUE_PDKILL
+#define SYS_AUE_pdgetpid AUE_PDGETPID
#define SYS_AUE_pselect AUE_SELECT
#define SYS_AUE_getloginclass AUE_NULL
#define SYS_AUE_setloginclass AUE_NULL