]> git.pld-linux.org Git - packages/uClibc.git/commitdiff
- updated to 0.9.32
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 12 Jun 2011 08:23:37 +0000 (08:23 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- updated newsoname,toolchain-wrapper,debug,stdio-unhide patches
- removed obsolete inotify_init1,sockflags,make patches
- added epoll patch (by Phil Blundell <philb@gnu.org>)

Changed files:
    uClibc-epoll.patch -> 1.1

uClibc-epoll.patch [new file with mode: 0644]

diff --git a/uClibc-epoll.patch b/uClibc-epoll.patch
new file mode 100644 (file)
index 0000000..d3be243
--- /dev/null
@@ -0,0 +1,18 @@
+--- uClibc-0.9.32/libc/sysdeps/linux/common/epoll.c.orig       2011-06-08 21:35:20.000000000 +0200
++++ uClibc-0.9.32/libc/sysdeps/linux/common/epoll.c    2011-06-12 10:09:14.380811355 +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;
+       }
This page took 0.851462 seconds and 4 git commands to generate.