diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-06-07 13:37:57 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-06-07 13:37:57 +0000 |
commit | 7a6a4e3d9794f4655870368a1bdaaf1245a72aa5 (patch) | |
tree | 424a0d71f429b1b74335ba5a61f5e34a12f5a8d5 /sys/compat/linux/linux_syscall.h | |
parent | 6068de15f5e9c8dd2178681c254cbf48a33161ab (diff) |
sync
Diffstat (limited to 'sys/compat/linux/linux_syscall.h')
-rw-r--r-- | sys/compat/linux/linux_syscall.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index bcaea04b8f3..15c4d9ea315 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_syscall.h,v 1.21 2000/04/12 04:23:05 jasoni Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.22 2000/06/07 13:37:55 niklas Exp $ */ /* * System call numbers. @@ -198,10 +198,10 @@ /* syscall: "sethostname" ret: "int" args: "char *" "u_int" */ #define LINUX_SYS_sethostname 74 -/* syscall: "setrlimit" ret: "int" args: "u_int" "struct ogetrlimit *" */ +/* syscall: "setrlimit" ret: "int" args: "u_int" "struct linux_rlimit *" */ #define LINUX_SYS_setrlimit 75 -/* syscall: "getrlimit" ret: "int" args: "u_int" "struct ogetrlimit *" */ +/* syscall: "getrlimit" ret: "int" args: "u_int" "struct linux_rlimit *" */ #define LINUX_SYS_getrlimit 76 /* syscall: "getrusage" ret: "int" args: "int" "struct rusage *" */ @@ -432,4 +432,7 @@ /* syscall: "vfork" ret: "int" args: */ #define LINUX_SYS_vfork 190 -#define LINUX_SYS_MAXSYSCALL 191 +/* syscall: "ugetrlimit" ret: "int" args: "u_int" "struct linux_rlimit *" */ +#define LINUX_SYS_ugetrlimit 191 + +#define LINUX_SYS_MAXSYSCALL 192 |