summaryrefslogtreecommitdiff
path: root/lib/mlibc/options/linux/generic/sys-epoll.cpp
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/linux/generic/sys-epoll.cpp
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/linux/generic/sys-epoll.cpp')
-rw-r--r--lib/mlibc/options/linux/generic/sys-epoll.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/lib/mlibc/options/linux/generic/sys-epoll.cpp b/lib/mlibc/options/linux/generic/sys-epoll.cpp
deleted file mode 100644
index 799d1a9..0000000
--- a/lib/mlibc/options/linux/generic/sys-epoll.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-
-#include <errno.h>
-#include <sys/epoll.h>
-
-#include <bits/ensure.h>
-#include <mlibc/linux-sysdeps.hpp>
-#include <stddef.h>
-
-int epoll_create(int) {
- int fd;
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_epoll_create, -1);
- if(int e = mlibc::sys_epoll_create(0, &fd); e) {
- errno = e;
- return -1;
- }
- return fd;
-}
-
-int epoll_pwait(int epfd, struct epoll_event *evnts, int n, int timeout,
- const sigset_t *sigmask) {
- int raised;
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_epoll_pwait, -1);
- if(int e = mlibc::sys_epoll_pwait(epfd, evnts, n, timeout, sigmask, &raised)) {
- errno = e;
- return -1;
- }
- return raised;
-}
-
-int epoll_create1(int flags) {
- int fd;
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_epoll_create, -1);
- if(int e = mlibc::sys_epoll_create(flags, &fd); e) {
- errno = e;
- return -1;
- }
- return fd;
-}
-
-int epoll_ctl(int epfd, int mode, int fd, struct epoll_event *ev) {
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_epoll_ctl, -1);
- if(int e = mlibc::sys_epoll_ctl(epfd, mode, fd, ev); e) {
- errno = e;
- return -1;
- }
- return 0;
-}
-
-int epoll_wait(int epfd, struct epoll_event *evnts, int n, int timeout) {
- int raised;
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_epoll_pwait, -1);
- if(int e = mlibc::sys_epoll_pwait(epfd, evnts, n, timeout, NULL, &raised)) {
- errno = e;
- return -1;
- }
- return raised;
-}
-