aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc/patches-0.9.32/150-x86_epoll_fix.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-05-15 13:42:28 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-05-15 13:42:28 +0000
commitd98c2d542cfae2572f8f97965ebe1bfb2e110bd6 (patch)
treead4315c201536a47c7c924b841fcbe68a09dbca7 /toolchain/uClibc/patches-0.9.32/150-x86_epoll_fix.patch
parent67675fd48d3d0475a9440ed9612c4770c6e4966d (diff)
downloadupstream-d98c2d542cfae2572f8f97965ebe1bfb2e110bd6.tar.gz
upstream-d98c2d542cfae2572f8f97965ebe1bfb2e110bd6.tar.bz2
upstream-d98c2d542cfae2572f8f97965ebe1bfb2e110bd6.zip
uClibc: remove 0.9.32, it is no longer necessary
SVN-Revision: 31739
Diffstat (limited to 'toolchain/uClibc/patches-0.9.32/150-x86_epoll_fix.patch')
-rw-r--r--toolchain/uClibc/patches-0.9.32/150-x86_epoll_fix.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/toolchain/uClibc/patches-0.9.32/150-x86_epoll_fix.patch b/toolchain/uClibc/patches-0.9.32/150-x86_epoll_fix.patch
deleted file mode 100644
index 00c44b04f2..0000000000
--- a/toolchain/uClibc/patches-0.9.32/150-x86_epoll_fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- 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;
- }