diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-02 20:35:55 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-02 20:35:55 +0000 |
commit | cd0973a98c9d44282442ba6bc83d7b2303769348 (patch) | |
tree | 39709448720ff4eb1f9fc5727b4d0cbe115fca9e /sys/compat/osf1/osf1_syscallargs.h | |
parent | 7355e38d0c8f253b0bd3b3066c37c5c0d99cb747 (diff) |
Added Makefiles to build stuff from syscalls.master in some emulations.
Regenerated derived files from various syscalls.master files. Added $OpenBSD$.
Diffstat (limited to 'sys/compat/osf1/osf1_syscallargs.h')
-rw-r--r-- | sys/compat/osf1/osf1_syscallargs.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/compat/osf1/osf1_syscallargs.h b/sys/compat/osf1/osf1_syscallargs.h index eb0da037b12..39f7dae9049 100644 --- a/sys/compat/osf1/osf1_syscallargs.h +++ b/sys/compat/osf1/osf1_syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.2 1995/10/07 06:27:28 mycroft Exp + * created from OpenBSD: syscalls.master,v 1.2 1996/08/02 20:20:30 niklas Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -87,6 +87,12 @@ struct osf1_sys_fcntl_args { syscallarg(void *) arg; }; +struct osf1_sys_poll_args { + syscallarg(struct pollfd *) fds; + syscallarg(unsigned int) nfds; + syscallarg(int) timeout; +}; + struct osf1_sys_socket_args { syscallarg(int) domain; syscallarg(int) type; @@ -243,6 +249,7 @@ int sys_dup2 __P((struct proc *, void *, register_t *)); int osf1_sys_fstat __P((struct proc *, void *, register_t *)); int osf1_sys_fcntl __P((struct proc *, void *, register_t *)); int sys_select __P((struct proc *, void *, register_t *)); +int osf1_sys_poll __P((struct proc *, void *, register_t *)); int sys_fsync __P((struct proc *, void *, register_t *)); int sys_setpriority __P((struct proc *, void *, register_t *)); int osf1_sys_socket __P((struct proc *, void *, register_t *)); |