aboutsummaryrefslogtreecommitdiffstats
path: root/main/libc0.9.32/uclibc-epoll_pwait-hack.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/libc0.9.32/uclibc-epoll_pwait-hack.patch')
-rw-r--r--main/libc0.9.32/uclibc-epoll_pwait-hack.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/main/libc0.9.32/uclibc-epoll_pwait-hack.patch b/main/libc0.9.32/uclibc-epoll_pwait-hack.patch
deleted file mode 100644
index 7e28056848..0000000000
--- a/main/libc0.9.32/uclibc-epoll_pwait-hack.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/libc/sysdeps/linux/common/epoll.c b/libc/sysdeps/linux/common/epoll.c
-index 85b0cfd..8fff9e6 100644
---- a/libc/sysdeps/linux/common/epoll.c
-+++ b/libc/sysdeps/linux/common/epoll.c
-@@ -67,12 +67,13 @@ extern __typeof(epoll_pwait) __libc_epoll_pwait;
- int __libc_epoll_pwait(int epfd, struct epoll_event *events, int maxevents,
- int timeout, const sigset_t *set)
- {
-+ int n = _NSIG / 8;
- if (SINGLE_THREAD_P)
-- return INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, _NSIG / 8);
-+ return INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, n);
- # ifdef __UCLIBC_HAS_THREADS_NATIVE__
- else {
- int oldtype = LIBC_CANCEL_ASYNC ();
-- int result = INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, _NSIG / 8);
-+ int result = INLINE_SYSCALL(epoll_pwait, 6, epfd, events, maxevents, timeout, set, n);
- LIBC_CANCEL_RESET (oldtype);
- return result;
- }