Regen; syscalls.master changed.
This commit is contained in:
parent
b0f977ee6b
commit
07e59e34e8
@ -2,7 +2,7 @@
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.34 1996/06/23 11:15:37 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
|
||||
*/
|
||||
|
||||
#define SUNOS_SYS_syscall 0
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.34 1996/06/23 11:15:37 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
|
||||
*/
|
||||
|
||||
#define syscallarg(x) union { x datum; register_t pad; }
|
||||
@ -77,6 +77,12 @@ struct sunos_sys_reboot_args {
|
||||
syscallarg(char *) bootstr;
|
||||
};
|
||||
|
||||
struct sunos_sys_execve_args {
|
||||
syscallarg(char *) path;
|
||||
syscallarg(char **) argp;
|
||||
syscallarg(char **) envp;
|
||||
};
|
||||
|
||||
struct sunos_sys_omsync_args {
|
||||
syscallarg(caddr_t) addr;
|
||||
syscallarg(size_t) len;
|
||||
@ -247,7 +253,7 @@ int sunos_sys_ioctl __P((struct proc *, void *, register_t *));
|
||||
int sunos_sys_reboot __P((struct proc *, void *, register_t *));
|
||||
int sys_symlink __P((struct proc *, void *, register_t *));
|
||||
int sys_readlink __P((struct proc *, void *, register_t *));
|
||||
int sys_execve __P((struct proc *, void *, register_t *));
|
||||
int sunos_sys_execve __P((struct proc *, void *, register_t *));
|
||||
int sys_umask __P((struct proc *, void *, register_t *));
|
||||
int sys_chroot __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_fstat __P((struct proc *, void *, register_t *));
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.34 1996/06/23 11:15:37 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
|
||||
*/
|
||||
|
||||
char *sunos_syscallnames[] = {
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.34 1996/06/23 11:15:37 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.35 1996/08/26 22:49:48 thorpej Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -152,8 +152,8 @@ struct sysent sunos_sysent[] = {
|
||||
sys_symlink }, /* 57 = symlink */
|
||||
{ 3, s(struct sys_readlink_args),
|
||||
sys_readlink }, /* 58 = readlink */
|
||||
{ 3, s(struct sys_execve_args),
|
||||
sys_execve }, /* 59 = execve */
|
||||
{ 3, s(struct sunos_sys_execve_args),
|
||||
sunos_sys_execve }, /* 59 = execve */
|
||||
{ 1, s(struct sys_umask_args),
|
||||
sys_umask }, /* 60 = umask */
|
||||
{ 1, s(struct sys_chroot_args),
|
||||
|
Loading…
x
Reference in New Issue
Block a user