diff options
| author | fvdl <fvdl@NetBSD.org> | 1995-08-23 20:19:15 +0000 |
|---|---|---|
| committer | fvdl <fvdl@NetBSD.org> | 1995-08-23 20:19:15 +0000 |
| commit | 72e901b9ff8b7b5b9c58b058f20e1e83a81eeed2 (patch) | |
| tree | 4e653a30c23db4a8d7e60a2f93fd0699cf4df643 /sys/compat/linux/linux_syscallargs.h | |
| parent | 28d9d64235aa69ab9493be265ee89b2dba375e71 (diff) | |
syscalls.master changed
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
| -rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index c26a35fba8d..85d66875c14 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_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.9 1995/08/21 03:42:12 mycroft Exp + * created from NetBSD: syscalls.master,v 1.10 1995/08/23 20:17:30 fvdl Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -149,7 +149,7 @@ struct linux_sigpending_args { syscallarg(linux_sigset_t *) mask; }; -struct linux_select_args { +struct linux_oldselect_args { syscallarg(struct linux_select *) lsp; }; @@ -268,4 +268,18 @@ struct linux_llseek_args { syscallarg(int) whence; }; +struct linux_getdents_args { + syscallarg(int) fd; + syscallarg(void *) dirent; + syscallarg(unsigned) count; +}; + +struct linux_select_args { + syscallarg(int) nfds; + syscallarg(fd_set *) readfds; + syscallarg(fd_set *) writefds; + syscallarg(fd_set *) exceptfds; + syscallarg(struct timeval *) timeout; +}; + #undef syscallarg |
