Regen.
This commit is contained in:
parent
1b8f9e10e1
commit
a247de6aeb
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.186 2005/03/01 17:43:08 ps Exp
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.188 2005/04/23 02:36:07 davidxu Exp
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -483,4 +483,5 @@ struct sysent sysent[] = {
|
||||
{ SYF_MPSAFE | AS(setaudit_addr_args), (sy_call_t *)lkmressys }, /* 452 = setaudit_addr */
|
||||
{ SYF_MPSAFE | AS(auditctl_args), (sy_call_t *)lkmressys }, /* 453 = auditctl */
|
||||
{ SYF_MPSAFE | AS(_umtx_op_args), (sy_call_t *)_umtx_op }, /* 454 = _umtx_op */
|
||||
{ SYF_MPSAFE | AS(thr_new_args), (sy_call_t *)thr_new }, /* 455 = thr_new */
|
||||
};
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.186 2005/03/01 17:43:08 ps Exp
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.188 2005/04/23 02:36:07 davidxu Exp
|
||||
*/
|
||||
|
||||
const char *syscallnames[] = {
|
||||
@ -462,4 +462,5 @@ const char *syscallnames[] = {
|
||||
"setaudit_addr", /* 452 = setaudit_addr */
|
||||
"auditctl", /* 453 = auditctl */
|
||||
"_umtx_op", /* 454 = _umtx_op */
|
||||
"thr_new", /* 455 = thr_new */
|
||||
};
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.186 2005/03/01 17:43:08 ps Exp
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.188 2005/04/23 02:36:07 davidxu Exp
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
@ -368,4 +368,5 @@
|
||||
#define SYS_setaudit_addr 452
|
||||
#define SYS_auditctl 453
|
||||
#define SYS__umtx_op 454
|
||||
#define SYS_MAXSYSCALL 455
|
||||
#define SYS_thr_new 455
|
||||
#define SYS_MAXSYSCALL 456
|
||||
|
@ -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.186 2005/03/01 17:43:08 ps Exp
|
||||
# created from FreeBSD: src/sys/kern/syscalls.master,v 1.188 2005/04/23 02:36:07 davidxu Exp
|
||||
MIASM = \
|
||||
syscall.o \
|
||||
exit.o \
|
||||
@ -309,4 +309,5 @@ MIASM = \
|
||||
getaudit_addr.o \
|
||||
setaudit_addr.o \
|
||||
auditctl.o \
|
||||
_umtx_op.o
|
||||
_umtx_op.o \
|
||||
thr_new.o
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.186 2005/03/01 17:43:08 ps Exp
|
||||
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.188 2005/04/23 02:36:07 davidxu Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
@ -1349,6 +1349,10 @@ struct _umtx_op_args {
|
||||
char uaddr_l_[PADL_(void *)]; void * uaddr; char uaddr_r_[PADR_(void *)];
|
||||
char uaddr2_l_[PADL_(void *)]; void * uaddr2; char uaddr2_r_[PADR_(void *)];
|
||||
};
|
||||
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)];
|
||||
};
|
||||
int nosys(struct thread *, struct nosys_args *);
|
||||
void sys_exit(struct thread *, struct sys_exit_args *);
|
||||
int fork(struct thread *, struct fork_args *);
|
||||
@ -1655,6 +1659,7 @@ int getaudit_addr(struct thread *, struct getaudit_addr_args *);
|
||||
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 *);
|
||||
|
||||
#ifdef COMPAT_43
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user