diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-15 06:26:05 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-15 09:23:54 +0000 |
commit | 6fa50adc4d0ab25d2ad24df914893a3cc66d3baf (patch) | |
tree | b3ea6442543eee1080dc574cc2db153303dbb2a8 /main/libc0.9.32/uclibc-epoll_pwait-hack.patch | |
parent | 9132b760e8fa027f206d3c16fa45ab73e3b45721 (diff) | |
download | aports-6fa50adc4d0ab25d2ad24df914893a3cc66d3baf.tar.bz2 aports-6fa50adc4d0ab25d2ad24df914893a3cc66d3baf.tar.xz |
main/libc0.9.32: upgrade to 0.9.32
Diffstat (limited to 'main/libc0.9.32/uclibc-epoll_pwait-hack.patch')
-rw-r--r-- | main/libc0.9.32/uclibc-epoll_pwait-hack.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/main/libc0.9.32/uclibc-epoll_pwait-hack.patch b/main/libc0.9.32/uclibc-epoll_pwait-hack.patch new file mode 100644 index 0000000000..7e28056848 --- /dev/null +++ b/main/libc0.9.32/uclibc-epoll_pwait-hack.patch @@ -0,0 +1,20 @@ +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; + } |