diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/sysdeps/keyronex/generic/linux.cpp | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/sysdeps/keyronex/generic/linux.cpp')
-rw-r--r-- | lib/mlibc/sysdeps/keyronex/generic/linux.cpp | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/mlibc/sysdeps/keyronex/generic/linux.cpp b/lib/mlibc/sysdeps/keyronex/generic/linux.cpp deleted file mode 100644 index 9b4a4c7..0000000 --- a/lib/mlibc/sysdeps/keyronex/generic/linux.cpp +++ /dev/null @@ -1,41 +0,0 @@ -#include <sys/types.h> - -#include <keyronex/syscall.h> -#include <mlibc/ansi-sysdeps.hpp> -#include <mlibc/debug.hpp> -#include <mlibc/posix-sysdeps.hpp> -#include <mlibc/linux-sysdeps.hpp> - -namespace mlibc { - -int -sys_epoll_pwait(int epfd, struct epoll_event *ev, int n, int timeout, - const sigset_t *sigmask, int *raised) -{ - uintptr_t ret = syscall5(kPXSysEPollWait, epfd, (uintptr_t)ev, n, - timeout, (uintptr_t)sigmask, NULL); - if (int e = sc_error(ret); e) - return e; - *raised = ret; - return 0; -} - -int -sys_epoll_create(int flags, int *fd) -{ - uintptr_t ret = syscall1(kPXSysEPollCreate, flags, NULL); - if (int e = sc_error(ret); e) - return e; - *fd = ret; - return 0; -} - -int -sys_epoll_ctl(int epfd, int mode, int fd, struct epoll_event *ev) -{ - uintptr_t ret = syscall4(kPXSysEPollCtl, epfd, mode, fd, (uintptr_t)ev, - NULL); - return sc_error(ret); -} - -}
\ No newline at end of file |