regen syscall tables

This commit is contained in:
christos 1996-08-30 23:08:21 +00:00
parent 0c1a0303ec
commit e32eb9631f
4 changed files with 13 additions and 7 deletions

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.36 1996/08/30 23:07:49 christos Exp
*/
#define SUNOS_SYS_syscall 0
@ -29,6 +29,7 @@
/* 21 is obsolete sunos_old_mount */
#define SUNOS_SYS_setuid 23
#define SUNOS_SYS_getuid 24
#define SUNOS_SYS_stime 25
#define SUNOS_SYS_ptrace 26
#define SUNOS_SYS_access 33
#define SUNOS_SYS_sync 36

View File

@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.36 1996/08/30 23:07:49 christos Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -36,6 +36,10 @@ struct sunos_sys_mknod_args {
syscallarg(int) dev;
};
struct sunos_sys_stime_args {
syscallarg(time_t *) tp;
};
struct sunos_sys_ptrace_args {
syscallarg(int) req;
syscallarg(pid_t) pid;
@ -236,6 +240,7 @@ int compat_43_sys_lseek __P((struct proc *, void *, register_t *));
int sys_getpid __P((struct proc *, void *, register_t *));
int sys_setuid __P((struct proc *, void *, register_t *));
int sys_getuid __P((struct proc *, void *, register_t *));
int sunos_sys_stime __P((struct proc *, void *, register_t *));
int sunos_sys_ptrace __P((struct proc *, void *, register_t *));
int sunos_sys_access __P((struct proc *, void *, register_t *));
int sys_sync __P((struct proc *, void *, register_t *));

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.36 1996/08/30 23:07:49 christos Exp
*/
char *sunos_syscallnames[] = {
@ -31,7 +31,7 @@ char *sunos_syscallnames[] = {
"#22 (unimplemented System V umount)", /* 22 = unimplemented System V umount */
"setuid", /* 23 = setuid */
"getuid", /* 24 = getuid */
"#25 (unimplemented sunos_stime)", /* 25 = unimplemented sunos_stime */
"stime", /* 25 = stime */
"ptrace", /* 26 = ptrace */
"#27 (unimplemented sunos_alarm)", /* 27 = unimplemented sunos_alarm */
"#28 (unimplemented sunos_fstat)", /* 28 = unimplemented sunos_fstat */

View File

@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
* created from NetBSD: syscalls.master,v 1.36 1996/08/30 23:07:49 christos Exp
*/
#include <sys/param.h>
@ -84,8 +84,8 @@ struct sysent sunos_sysent[] = {
sys_setuid }, /* 23 = setuid */
{ 0, 0,
sys_getuid }, /* 24 = getuid */
{ 0, 0,
sys_nosys }, /* 25 = unimplemented sunos_stime */
{ 1, s(struct sunos_sys_stime_args),
sunos_sys_stime }, /* 25 = stime */
{ 5, s(struct sunos_sys_ptrace_args),
sunos_sys_ptrace }, /* 26 = ptrace */
{ 0, 0,