This commit is contained in:
matt 2006-08-29 23:37:30 +00:00
parent 084f43623d
commit bae263f051
2 changed files with 11 additions and 6 deletions

View File

@ -1,14 +1,14 @@
/* $NetBSD: init_sysent.c,v 1.177 2006/07/31 16:34:44 martin Exp $ */
/* $NetBSD: init_sysent.c,v 1.178 2006/08/29 23:37:30 matt Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.156 2006/07/31 16:32:51 martin Exp
* created from NetBSD: syscalls.master,v 1.157 2006/08/29 23:34:48 matt Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.177 2006/07/31 16:34:44 martin Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.178 2006/08/29 23:37:30 matt Exp $");
#include "opt_ktrace.h"
#include "opt_nfsserver.h"
@ -157,8 +157,13 @@ struct sysent sysent[] = {
#endif
{ 0, 0, 0,
sys_geteuid }, /* 25 = geteuid */
#ifdef PTRACE
{ 4, s(struct sys_ptrace_args), 0,
sys_ptrace }, /* 26 = ptrace */
#else
{ 0, 0, 0,
sys_nosys }, /* 26 = excluded ktrace */
#endif
{ 3, s(struct sys_recvmsg_args), 0,
sys_recvmsg }, /* 27 = recvmsg */
{ 3, s(struct sys_sendmsg_args), 0,

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscalls.c,v 1.173 2006/08/29 23:36:56 matt Exp $ */
/* $NetBSD: syscalls.c,v 1.174 2006/08/29 23:37:30 matt Exp $ */
/*
* System call names.
@ -8,7 +8,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.173 2006/08/29 23:36:56 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.174 2006/08/29 23:37:30 matt Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"
@ -66,7 +66,7 @@ const char *const syscallnames[] = {
#ifdef PTRACE
"ptrace", /* 26 = ptrace */
#else
"#26 (excluded ptrace)", /* 26 = excluded ptrace */
"#26 (excluded ktrace)", /* 26 = excluded ktrace */
#endif
"recvmsg", /* 27 = recvmsg */
"sendmsg", /* 28 = sendmsg */