Regen for sigqueue syscall.

This commit is contained in:
David Xu 2005-10-14 12:56:28 +00:00
parent 9104847f21
commit 823acd70b6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151317
5 changed files with 16 additions and 7 deletions

View File

@ -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"

View File

@ -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 */
};

View File

@ -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

View File

@ -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

View File

@ -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