diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-03-14 00:44:21 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-03-14 00:44:21 +0000 |
commit | 23f1eb80011a08ad6a6ea4f200e3a7d86c78ae1d (patch) | |
tree | 8b4e8efa5cc44875877208842538b99cd651e5c3 /sys/compat/sunos/sunos_sysent.c | |
parent | 4e75a2f3d47fcb4101ad6c63743e4262538a944a (diff) |
Regen after syscall changes (option PTRACE)
Diffstat (limited to 'sys/compat/sunos/sunos_sysent.c')
-rw-r--r-- | sys/compat/sunos/sunos_sysent.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/compat/sunos/sunos_sysent.c b/sys/compat/sunos/sunos_sysent.c index 92175d5f60e..f0360b8d367 100644 --- a/sys/compat/sunos/sunos_sysent.c +++ b/sys/compat/sunos/sunos_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: sunos_sysent.c,v 1.13 2001/08/26 04:14:27 deraadt Exp $ */ +/* $OpenBSD: sunos_sysent.c,v 1.14 2002/03/14 00:44:20 miod Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.11 1999/06/07 07:17:48 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.12 2002/03/14 00:42:25 miod Exp */ #include <sys/param.h> @@ -71,8 +71,13 @@ struct sysent sunos_sysent[] = { sys_getuid }, /* 24 = getuid */ { 1, s(struct sunos_sys_ostime_args), sunos_sys_ostime }, /* 25 = ostime */ +#ifdef PTRACE { 5, s(struct sunos_sys_ptrace_args), sunos_sys_ptrace }, /* 26 = ptrace */ +#else + { 0, 0, + sys_nosys }, /* 26 = unimplemented sunos_ptrace */ +#endif { 0, 0, sys_nosys }, /* 27 = unimplemented sunos_alarm */ { 0, 0, |