mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 18:55:56 +02:00
a8907a6272
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27773 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
823 B
Diff
19 lines
823 B
Diff
--- a/libc/sysdeps/linux/common/epoll.c
|
|
+++ b/libc/sysdeps/linux/common/epoll.c
|
|
@@ -67,12 +67,13 @@ extern __typeof(epoll_pwait) __libc_epol
|
|
int __libc_epoll_pwait(int epfd, struct epoll_event *events, int maxevents,
|
|
int timeout, const sigset_t *set)
|
|
{
|
|
+ int nsig = _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, nsig);
|
|
# 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, nsig);
|
|
LIBC_CANCEL_RESET (oldtype);
|
|
return result;
|
|
}
|