regen
This commit is contained in:
parent
e7045955c7
commit
d5645dec8e
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: init_sysent.c,v 1.151 2003/11/15 01:20:48 thorpej Exp $ */
|
||||
/* $NetBSD: init_sysent.c,v 1.152 2004/01/02 18:53:45 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.134 2003/11/15 01:19:38 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.135 2004/01/02 18:52:17 cl Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.151 2003/11/15 01:20:48 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.152 2004/01/02 18:53:45 cl Exp $");
|
||||
|
||||
#include "opt_ktrace.h"
|
||||
#include "opt_nfsserver.h"
|
||||
|
@ -903,7 +903,7 @@ struct sysent sysent[] = {
|
|||
sys_nosys }, /* 328 = unimplemented */
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 329 = unimplemented */
|
||||
{ 3, s(struct sys_sa_register_args), 0,
|
||||
{ 4, s(struct sys_sa_register_args), 0,
|
||||
sys_sa_register }, /* 330 = sa_register */
|
||||
{ 2, s(struct sys_sa_stacks_args), 0,
|
||||
sys_sa_stacks }, /* 331 = sa_stacks */
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: syscalls.c,v 1.146 2003/11/15 01:20:48 thorpej Exp $ */
|
||||
/* $NetBSD: syscalls.c,v 1.147 2004/01/02 18:53:47 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.134 2003/11/15 01:19:38 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.135 2004/01/02 18:52:17 cl Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.146 2003/11/15 01:20:48 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.147 2004/01/02 18:53:47 cl Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_ktrace.h"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscall.h,v 1.144 2003/11/15 01:20:48 thorpej Exp $ */
|
||||
/* $NetBSD: syscall.h,v 1.145 2004/01/02 18:53:47 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.134 2003/11/15 01:19:38 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.135 2004/01/02 18:52:17 cl Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: "int" "..." */
|
||||
|
@ -931,7 +931,7 @@
|
|||
/* syscall: "_lwp_setprivate" ret: "void" args: "void *" */
|
||||
#define SYS__lwp_setprivate 317
|
||||
|
||||
/* syscall: "sa_register" ret: "int" args: "sa_upcall_t" "sa_upcall_t *" "int" */
|
||||
/* syscall: "sa_register" ret: "int" args: "sa_upcall_t" "sa_upcall_t *" "int" "ssize_t" */
|
||||
#define SYS_sa_register 330
|
||||
|
||||
/* syscall: "sa_stacks" ret: "int" args: "int" "stack_t *" */
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscallargs.h,v 1.126 2003/11/15 01:20:48 thorpej Exp $ */
|
||||
/* $NetBSD: syscallargs.h,v 1.127 2004/01/02 18:53:47 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.134 2003/11/15 01:19:38 thorpej Exp
|
||||
* created from NetBSD: syscalls.master,v 1.135 2004/01/02 18:52:17 cl Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS__SYSCALLARGS_H_
|
||||
|
@ -1397,6 +1397,7 @@ struct sys_sa_register_args {
|
|||
syscallarg(sa_upcall_t) new;
|
||||
syscallarg(sa_upcall_t *) old;
|
||||
syscallarg(int) flags;
|
||||
syscallarg(ssize_t) stackinfo_offset;
|
||||
};
|
||||
|
||||
struct sys_sa_stacks_args {
|
||||
|
|
Loading…
Reference in New Issue