diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-23 08:13:59 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-23 08:13:59 +0100 |
commit | 17a6468b3f0fae577b1aaad51b56bdefe15a25c1 (patch) | |
tree | 2e0ccfed1a6a8afb24c2547ca97ae5d8c450b717 /toolchain/uClibc/patches/0.9.32.1/epoll.patch | |
parent | 2548d641ca7adfe3dcf31d09bb2f9b047b186a0f (diff) | |
parent | c66e4117d3ac4d561718a8b17066dc8b04a02027 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'toolchain/uClibc/patches/0.9.32.1/epoll.patch')
-rw-r--r-- | toolchain/uClibc/patches/0.9.32.1/epoll.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/toolchain/uClibc/patches/0.9.32.1/epoll.patch b/toolchain/uClibc/patches/0.9.32.1/epoll.patch deleted file mode 100644 index 4d9cc38cd..000000000 --- a/toolchain/uClibc/patches/0.9.32.1/epoll.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -Nur uClibc-0.9.32.orig/libc/sysdeps/linux/common/epoll.c uClibc-0.9.32/libc/sysdeps/linux/common/epoll.c ---- uClibc-0.9.32.orig/libc/sysdeps/linux/common/epoll.c 2011-06-08 21:35:20.000000000 +0200 -+++ uClibc-0.9.32/libc/sysdeps/linux/common/epoll.c 2011-06-15 14:18:06.798202250 +0200 -@@ -67,12 +67,13 @@ - 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; - } |