This commit is contained in:
mycroft 1996-09-07 13:01:41 +00:00
parent 4a60463da8
commit f51fa207ba
4 changed files with 8 additions and 13 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.17 1996/02/10 17:12:51 christos Exp
* created from NetBSD: syscalls.master,v 1.18 1996/09/07 12:40:52 mycroft Exp
*/
#define SVR4_SYS_syscall 0

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.17 1996/02/10 17:12:51 christos Exp
* created from NetBSD: syscalls.master,v 1.18 1996/09/07 12:40:52 mycroft Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -163,12 +163,6 @@ struct svr4_sys_putmsg_args {
syscallarg(int) flags;
};
struct svr4_sys_poll_args {
syscallarg(struct svr4_pollfd *) fds;
syscallarg(long) nfds;
syscallarg(int) timeout;
};
struct svr4_sys_lstat_args {
syscallarg(char *) path;
syscallarg(struct svr4_stat *) ub;
@ -378,7 +372,7 @@ int sys_mkdir __P((struct proc *, void *, register_t *));
int svr4_sys_getdents __P((struct proc *, void *, register_t *));
int svr4_sys_getmsg __P((struct proc *, void *, register_t *));
int svr4_sys_putmsg __P((struct proc *, void *, register_t *));
int svr4_sys_poll __P((struct proc *, void *, register_t *));
int sys_poll __P((struct proc *, void *, register_t *));
int svr4_sys_lstat __P((struct proc *, void *, register_t *));
int sys_symlink __P((struct proc *, void *, register_t *));
int sys_readlink __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.17 1996/02/10 17:12:51 christos Exp
* created from NetBSD: syscalls.master,v 1.18 1996/09/07 12:40:52 mycroft Exp
*/
char *svr4_syscallnames[] = {

View File

@ -2,13 +2,14 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.17 1996/02/10 17:12:51 christos Exp
* created from NetBSD: syscalls.master,v 1.18 1996/09/07 12:40:52 mycroft Exp
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/signal.h>
#include <sys/mount.h>
#include <sys/poll.h>
#include <sys/syscallargs.h>
#include <compat/svr4/svr4_types.h>
#include <compat/svr4/svr4_time.h>
@ -227,8 +228,8 @@ struct sysent svr4_sysent[] = {
svr4_sys_getmsg }, /* 85 = getmsg */
{ 4, s(struct svr4_sys_putmsg_args),
svr4_sys_putmsg }, /* 86 = putmsg */
{ 3, s(struct svr4_sys_poll_args),
svr4_sys_poll }, /* 87 = poll */
{ 3, s(struct sys_poll_args),
sys_poll }, /* 87 = poll */
{ 2, s(struct svr4_sys_lstat_args),
svr4_sys_lstat }, /* 88 = lstat */
{ 2, s(struct sys_symlink_args),