diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-15 01:29:13 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-15 01:29:13 +0000 |
commit | d52a5ec1ec7c4389329010af841f8a69435ff6b8 (patch) | |
tree | a67967d0b335cdce261bdbe0fe3a58a120af8b8c /toolchain/uClibc/patches-0.9.30.1/300-fix-ppoll.diff | |
parent | 15fba44a5bc0e769efd4749dd31438e53b0ca765 (diff) |
uClibc: remove 0.9.30, 0.9.31
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25542 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/uClibc/patches-0.9.30.1/300-fix-ppoll.diff')
-rw-r--r-- | toolchain/uClibc/patches-0.9.30.1/300-fix-ppoll.diff | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/toolchain/uClibc/patches-0.9.30.1/300-fix-ppoll.diff b/toolchain/uClibc/patches-0.9.30.1/300-fix-ppoll.diff deleted file mode 100644 index c2970daf69..0000000000 --- a/toolchain/uClibc/patches-0.9.30.1/300-fix-ppoll.diff +++ /dev/null @@ -1,38 +0,0 @@ - -It will match kernel's sigset_t starting from 0.9.31. - -Please try attached patch. --- -vda - ---- uClibc.0/libc/sysdeps/linux/common/ppoll.c -+++ uClibc.1/libc/sysdeps/linux/common/ppoll.c -@@ -17,6 +17,7 @@ - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ - -+#include <signal.h> - #include <sys/syscall.h> - #include <sys/poll.h> - -@@ -26,9 +27,9 @@ - - # define __NR___libc_ppoll __NR_ppoll - static __always_inline --_syscall4(int, __libc_ppoll, struct pollfd *, fds, -+_syscall5(int, __libc_ppoll, struct pollfd *, fds, - nfds_t, nfds, const struct timespec *, timeout, -- const __sigset_t *, sigmask) -+ const __sigset_t *, sigmask, size_t, sigsetsize) - - int - ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, -@@ -43,7 +44,7 @@ - timeout = &tval; - } - -- return __libc_ppoll(fds, nfds, timeout, sigmask); -+ return __libc_ppoll(fds, nfds, timeout, sigmask, _NSIG / 8); - } - libc_hidden_def(ppoll) - |