diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-07-23 17:42:10 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-07-23 17:42:10 +0000 |
commit | f4588d84ab7e59c8e7c9de64f7f0cb6669f0d859 (patch) | |
tree | df2c23f9a01f594084f71bde91f34354b15cde49 /sys/compat/linux/syscalls.master | |
parent | b7d53f3d6f307063475beed5f27c182c727e1e04 (diff) |
add sys_sysinfo. from marius aamodt eriksen.
linux_misc.c: fvdl gave his copyright to tnf, adjust.
Diffstat (limited to 'sys/compat/linux/syscalls.master')
-rw-r--r-- | sys/compat/linux/syscalls.master | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index 2e94b4397cc..226739eb780 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.38 2003/07/03 00:00:04 tedu Exp $ + $OpenBSD: syscalls.master,v 1.39 2003/07/23 17:42:09 tedu Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -40,6 +40,7 @@ #include <compat/linux/linux_types.h> #include <compat/linux/linux_signal.h> +#include <compat/linux/linux_misc.h> #include <compat/linux/linux_syscallargs.h> #include <machine/linux_machdep.h> @@ -202,7 +203,7 @@ 114 STD { int linux_sys_wait4(int pid, int *status, \ int options, struct rusage *rusage); } 115 STD { int linux_sys_swapoff(void); } -116 STD { int linux_sys_sysinfo(void); } +116 STD { int linux_sys_sysinfo(struct linux_sys_sysinfo_args *sysinfo); } 117 STD { int linux_sys_ipc(int what, int a1, int a2, int a3, \ caddr_t ptr); } 118 NOARGS { int sys_fsync(int fd); } |