Regen for sigqueue syscall.
This commit is contained in:
parent
3fbdb3c215
commit
48bf274cec
@ -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"
|
||||
|
@ -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 */
|
||||
};
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user