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/ibcs2/ibcs2_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/ibcs2/ibcs2_syscallargs.h')
-rw-r--r-- | sys/compat/ibcs2/ibcs2_syscallargs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/ibcs2/ibcs2_syscallargs.h b/sys/compat/ibcs2/ibcs2_syscallargs.h index b82aa343256..09d99d19ccc 100644 --- a/sys/compat/ibcs2/ibcs2_syscallargs.h +++ b/sys/compat/ibcs2/ibcs2_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.8 1996/01/07 06:09:43 mycroft Exp + * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -255,9 +255,9 @@ struct ibcs2_sys_putmsg_args { syscallarg(int) flags; }; -struct ibcs2_sys_poll_args { - syscallarg(struct ibcs2_pollfd *) fds; - syscallarg(long) nfds; +struct sys_poll_args { + syscallarg(struct pollfd *) fds; + syscallarg(unsigned long) nfds; syscallarg(int) timeout; }; @@ -423,7 +423,7 @@ int ibcs2_sys_getdents __P((struct proc *, void *, register_t *)); int ibcs2_sys_sysfs __P((struct proc *, void *, register_t *)); int ibcs2_sys_getmsg __P((struct proc *, void *, register_t *)); int ibcs2_sys_putmsg __P((struct proc *, void *, register_t *)); -int ibcs2_sys_poll __P((struct proc *, void *, register_t *)); +int sys_poll __P((struct proc *, void *, register_t *)); int ibcs2_sys_symlink __P((struct proc *, void *, register_t *)); int ibcs2_sys_lstat __P((struct proc *, void *, register_t *)); int ibcs2_sys_readlink __P((struct proc *, void *, register_t *)); |