Regenerate: Added __sigaction_sigtramp at #340.

This commit is contained in:
thorpej 2002-07-04 23:34:28 +00:00
parent 011d4d5f44
commit a08a4aecac
4 changed files with 26 additions and 13 deletions

View File

@ -1,14 +1,14 @@
/* $NetBSD: init_sysent.c,v 1.129 2002/05/03 00:22:15 eeh Exp $ */
/* $NetBSD: init_sysent.c,v 1.130 2002/07/04 23:34:29 thorpej Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.129 2002/05/03 00:22:15 eeh Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.130 2002/07/04 23:34:29 thorpej Exp $");
#include "opt_ktrace.h"
#include "opt_nfsserver.h"
@ -881,8 +881,8 @@ struct sysent sysent[] = {
sys_nosys }, /* 338 = unimplemented */
{ 0, 0, 0,
sys_nosys }, /* 339 = unimplemented */
{ 0, 0, 0,
sys_nosys }, /* 340 = filler */
{ 5, s(struct sys___sigaction_sigtramp_args), 0,
sys___sigaction_sigtramp }, /* 340 = __sigaction_sigtramp */
{ 0, 0, 0,
sys_nosys }, /* 341 = filler */
{ 0, 0, 0,

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls.c,v 1.124 2002/05/03 00:22:16 eeh Exp $ */
/* $NetBSD: syscalls.c,v 1.125 2002/07/04 23:34:29 thorpej Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.124 2002/05/03 00:22:16 eeh Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.125 2002/07/04 23:34:29 thorpej Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"
@ -460,4 +460,5 @@ const char *const syscallnames[] = {
"#337 (unimplemented)", /* 337 = unimplemented */
"#338 (unimplemented)", /* 338 = unimplemented */
"#339 (unimplemented)", /* 339 = unimplemented */
"__sigaction_sigtramp", /* 340 = __sigaction_sigtramp */
};

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscall.h,v 1.122 2002/05/03 00:26:49 eeh Exp $ */
/* $NetBSD: syscall.h,v 1.123 2002/07/04 23:34:28 thorpej Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@ -717,5 +717,8 @@
/* syscall: "utrace" ret: "int" args: "const char *" "void *" "size_t" */
#define SYS_utrace 306
#define SYS_MAXSYSCALL 340
/* syscall: "__sigaction_sigtramp" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" "void *" "int" */
#define SYS___sigaction_sigtramp 340
#define SYS_MAXSYSCALL 341
#define SYS_NSYSENT 512

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscallargs.h,v 1.104 2002/05/03 00:26:49 eeh Exp $ */
/* $NetBSD: syscallargs.h,v 1.105 2002/07/04 23:34:28 thorpej Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.111 2002/05/03 00:20:56 eeh Exp
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
*/
#ifndef _SYS__SYSCALLARGS_H_
@ -1220,6 +1220,14 @@ struct sys_utrace_args {
syscallarg(size_t) len;
};
struct sys___sigaction_sigtramp_args {
syscallarg(int) signum;
syscallarg(const struct sigaction *) nsa;
syscallarg(struct sigaction *) osa;
syscallarg(void *) tramp;
syscallarg(int) vers;
};
/*
* System call prototypes.
*/
@ -1529,4 +1537,5 @@ int sys___shmctl13(struct proc *, void *, register_t *);
int sys_lchflags(struct proc *, void *, register_t *);
int sys_issetugid(struct proc *, void *, register_t *);
int sys_utrace(struct proc *, void *, register_t *);
int sys___sigaction_sigtramp(struct proc *, void *, register_t *);
#endif /* _SYS__SYSCALLARGS_H_ */