summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavidxu <davidxu@FreeBSD.org>2005-10-14 12:56:28 +0000
committerdavidxu <davidxu@FreeBSD.org>2005-10-14 12:56:28 +0000
commit48bf274cecb555d0b2df97545891f0753dd7ddea (patch)
treea2202f22b1e0dd2a8d6883ec2576e8ec717fceb4
parent3fbdb3c21524d9d95278ada1d61b4d1e6bee654b (diff)
downloadFreeBSD-src-48bf274cecb555d0b2df97545891f0753dd7ddea.zip
FreeBSD-src-48bf274cecb555d0b2df97545891f0753dd7ddea.tar.gz
Regen for sigqueue syscall.
-rw-r--r--sys/kern/init_sysent.c2
-rw-r--r--sys/kern/syscalls.c3
-rw-r--r--sys/sys/syscall.h5
-rw-r--r--sys/sys/syscall.mk5
-rw-r--r--sys/sys/sysproto.h8
5 files changed, 16 insertions, 7 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index efeaa54..0f9019b 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.199 2005/09/27 14:32:04 csjp Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.200 2005/10/14 12:43:46 davidxu Exp
*/
#include "opt_compat.h"
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index cd8b43c..3c6fae0 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.199 2005/09/27 14:32:04 csjp Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.200 2005/10/14 12:43:46 davidxu Exp
*/
const char *syscallnames[] = {
@@ -463,4 +463,5 @@ const char *syscallnames[] = {
"auditctl", /* 453 = auditctl */
"_umtx_op", /* 454 = _umtx_op */
"thr_new", /* 455 = thr_new */
+ "sigqueue", /* 456 = sigqueue */
};
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 4a48393..42b170d 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: src/sys/kern/syscalls.master,v 1.199 2005/09/27 14:32:04 csjp Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.200 2005/10/14 12:43:46 davidxu Exp
*/
#define SYS_syscall 0
@@ -371,4 +371,5 @@
#define SYS_auditctl 453
#define SYS__umtx_op 454
#define SYS_thr_new 455
-#define SYS_MAXSYSCALL 456
+#define SYS_sigqueue 456
+#define SYS_MAXSYSCALL 457
diff --git a/sys/sys/syscall.mk b/sys/sys/syscall.mk
index 51fff14..56e58ca 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: src/sys/kern/syscalls.master,v 1.199 2005/09/27 14:32:04 csjp Exp
+# created from FreeBSD: src/sys/kern/syscalls.master,v 1.200 2005/10/14 12:43:46 davidxu Exp
MIASM = \
syscall.o \
exit.o \
@@ -312,4 +312,5 @@ MIASM = \
setaudit_addr.o \
auditctl.o \
_umtx_op.o \
- thr_new.o
+ thr_new.o \
+ sigqueue.o
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 406c2d3..cd6f6a9 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: src/sys/kern/syscalls.master,v 1.199 2005/09/27 14:32:04 csjp Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.200 2005/10/14 12:43:46 davidxu Exp
*/
#ifndef _SYS_SYSPROTO_H_
@@ -1365,6 +1365,11 @@ struct thr_new_args {
char param_l_[PADL_(struct thr_param *)]; struct thr_param * param; char param_r_[PADR_(struct thr_param *)];
char param_size_l_[PADL_(int)]; int param_size; char param_size_r_[PADR_(int)];
};
+struct sigqueue_args {
+ char pid_l_[PADL_(pid_t)]; pid_t pid; char pid_r_[PADR_(pid_t)];
+ char signum_l_[PADL_(int)]; int signum; char signum_r_[PADR_(int)];
+ char value_l_[PADL_(void *)]; void * value; char value_r_[PADR_(void *)];
+};
int nosys(struct thread *, struct nosys_args *);
void sys_exit(struct thread *, struct sys_exit_args *);
int fork(struct thread *, struct fork_args *);
@@ -1674,6 +1679,7 @@ int setaudit_addr(struct thread *, struct setaudit_addr_args *);
int auditctl(struct thread *, struct auditctl_args *);
int _umtx_op(struct thread *, struct _umtx_op_args *);
int thr_new(struct thread *, struct thr_new_args *);
+int sigqueue(struct thread *, struct sigqueue_args *);
#ifdef COMPAT_43
OpenPOWER on IntegriCloud