diff options
| author | 2012-06-19 11:31:39 +0000 | |
|---|---|---|
| committer | 2012-06-19 11:31:39 +0000 | |
| commit | 361d6ffe0725e8ba38c4a19d1657f1f66f61630e (patch) | |
| tree | 27f8bb7eca88bae52687f37ade0b4bdffe556757 /sys/compat/linux/linux_dummy.c | |
| parent | Add socket type mask to filter out implementation specific flags. (diff) | |
| download | wireguard-openbsd-361d6ffe0725e8ba38c4a19d1657f1f66f61630e.tar.xz wireguard-openbsd-361d6ffe0725e8ba38c4a19d1657f1f66f61630e.zip | |
Add dummies for the epoll and eventfd syscall families.
Okay jasper@
Diffstat (limited to 'sys/compat/linux/linux_dummy.c')
| -rw-r--r-- | sys/compat/linux/linux_dummy.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_dummy.c b/sys/compat/linux/linux_dummy.c index 983e76fceb2..268e9718b55 100644 --- a/sys/compat/linux/linux_dummy.c +++ b/sys/compat/linux/linux_dummy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_dummy.c,v 1.19 2011/12/14 08:33:18 robert Exp $ */ +/* $OpenBSD: linux_dummy.c,v 1.20 2012/06/19 11:31:39 pirofti Exp $ */ /*- * Copyright (c) 1994-1995 Søren Schmidt @@ -112,6 +112,14 @@ DUMMY(setfsgid); /* #216 */ DUMMY(pivot_root); /* #217 */ DUMMY(mincore); /* #218 */ DUMMY(fadvise64); /* #250 */ +DUMMY(epoll_create); /* #254 */ +DUMMY(epoll_ctl); /* #255 */ +DUMMY(epoll_wait); /* #256 */ +DUMMY(epoll_pwait); /* #319 */ +DUMMY(eventfd); /* #323 */ +DUMMY(eventfd2); /* #328 */ +DUMMY(epoll_create1); /* #329 */ + #define DUMMY_XATTR(s) \ int \ |
