diff options
| author | 2012-06-19 11:32:40 +0000 | |
|---|---|---|
| committer | 2012-06-19 11:32:40 +0000 | |
| commit | 53c12b6fbea25296afd7465f949e1c1f3e87001e (patch) | |
| tree | c1dca0285f7b6791cafcfd7d97c5ff47944004b2 /sys/compat/linux/linux_syscall.h | |
| parent | Add dummies for the epoll and eventfd syscall families. (diff) | |
| download | wireguard-openbsd-53c12b6fbea25296afd7465f949e1c1f3e87001e.tar.xz wireguard-openbsd-53c12b6fbea25296afd7465f949e1c1f3e87001e.zip | |
Regenerate.
Diffstat (limited to 'sys/compat/linux/linux_syscall.h')
| -rw-r--r-- | sys/compat/linux/linux_syscall.h | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index 2c587e13b06..2669e965fa4 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.72 2012/06/08 14:29:58 pirofti Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.74 2012/06/19 11:35:56 pirofti Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.68 2012/05/23 19:47:02 pirofti Exp + * created from OpenBSD: syscalls.master,v 1.70 2012/06/19 11:31:39 pirofti Exp */ /* syscall: "syscall" ret: "int" args: */ @@ -736,6 +736,15 @@ /* syscall: "linux_exit_group" ret: "int" args: "int" */ #define LINUX_SYS_linux_exit_group 252 +/* syscall: "epoll_create" ret: "int" args: */ +#define LINUX_SYS_epoll_create 254 + +/* syscall: "epoll_ctl" ret: "int" args: */ +#define LINUX_SYS_epoll_ctl 255 + +/* syscall: "epoll_wait" ret: "int" args: */ +#define LINUX_SYS_epoll_wait 256 + /* syscall: "set_tid_address" ret: "int" args: "void *" */ #define LINUX_SYS_set_tid_address 258 @@ -751,12 +760,27 @@ /* syscall: "fstatfs64" ret: "int" args: "int" "struct linux_statfs64 *" */ #define LINUX_SYS_fstatfs64 269 +/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */ +#define LINUX_SYS_tgkill 270 + /* syscall: "set_robust_list" ret: "int" args: "struct linux_robust_list_head *" "size_t" */ #define LINUX_SYS_set_robust_list 311 /* syscall: "get_robust_list" ret: "int" args: "int" "struct linux_robust_list_head **" "size_t *" */ #define LINUX_SYS_get_robust_list 312 +/* syscall: "epoll_pwait" ret: "int" args: */ +#define LINUX_SYS_epoll_pwait 319 + +/* syscall: "eventfd" ret: "int" args: */ +#define LINUX_SYS_eventfd 323 + +/* syscall: "eventfd2" ret: "int" args: */ +#define LINUX_SYS_eventfd2 328 + +/* syscall: "epoll_create1" ret: "int" args: */ +#define LINUX_SYS_epoll_create1 329 + /* syscall: "pipe2" ret: "int" args: "int *" "int" */ #define LINUX_SYS_pipe2 331 |
