diff options
author | 2001-04-02 21:44:45 +0000 | |
---|---|---|
committer | 2001-04-02 21:44:45 +0000 | |
commit | 918efe5d284e230a077ff41b053182c9c788f153 (patch) | |
tree | cc1a568710d5fcccd8b015d6c7076e0416a90607 /sys/compat/linux/linux_syscall.h | |
parent | On popular demand, the Linux-compatibility clone(2) implementation based (diff) | |
download | wireguard-openbsd-918efe5d284e230a077ff41b053182c9c788f153.tar.xz wireguard-openbsd-918efe5d284e230a077ff41b053182c9c788f153.zip |
sync
Diffstat (limited to 'sys/compat/linux/linux_syscall.h')
-rw-r--r-- | sys/compat/linux/linux_syscall.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index 09035a42da6..fd7e3019f30 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscall.h,v 1.26 2001/01/29 07:24:18 jasoni Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.27 2001/04/02 21:44:45 niklas Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.27 2001/01/29 07:23:54 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.28 2001/04/02 21:43:11 niklas Exp */ /* syscall: "syscall" ret: "int" args: */ @@ -373,7 +373,7 @@ /* syscall: "sigreturn" ret: "int" args: "struct linux_sigcontext *" */ #define LINUX_SYS_sigreturn 119 -/* syscall: "clone" ret: "int" args: */ +/* syscall: "clone" ret: "int" args: "int" "void *" */ #define LINUX_SYS_clone 120 /* syscall: "setdomainname" ret: "int" args: "char *" "int" */ @@ -478,25 +478,25 @@ /* syscall: "munlockall" ret: "int" args: */ #define LINUX_SYS_munlockall 153 -/* syscall: "sched_setparam" ret: "int" args: */ +/* syscall: "sched_setparam" ret: "int" args: "linux_pid_t" "const struct linux_sched_param *" */ #define LINUX_SYS_sched_setparam 154 -/* syscall: "sched_getparam" ret: "int" args: */ +/* syscall: "sched_getparam" ret: "int" args: "linux_pid_t" "struct linux_sched_param *" */ #define LINUX_SYS_sched_getparam 155 -/* syscall: "sched_setscheduler" ret: "int" args: */ +/* syscall: "sched_setscheduler" ret: "int" args: "linux_pid_t" "int" "const struct linux_sched_param *" */ #define LINUX_SYS_sched_setscheduler 156 -/* syscall: "sched_getscheduler" ret: "int" args: */ +/* syscall: "sched_getscheduler" ret: "int" args: "linux_pid_t" */ #define LINUX_SYS_sched_getscheduler 157 /* syscall: "sched_yield" ret: "int" args: */ #define LINUX_SYS_sched_yield 158 -/* syscall: "sched_get_priority_max" ret: "int" args: */ +/* syscall: "sched_get_priority_max" ret: "int" args: "int" */ #define LINUX_SYS_sched_get_priority_max 159 -/* syscall: "sched_get_priority_min" ret: "int" args: */ +/* syscall: "sched_get_priority_min" ret: "int" args: "int" */ #define LINUX_SYS_sched_get_priority_min 160 /* syscall: "sched_rr_get_interval" ret: "int" args: */ |