2 It will match kernel's sigset_t starting from 0.9.31.
4 Please try attached patch.
8 --- uClibc.0/libc/sysdeps/linux/common/ppoll.c
9 +++ uClibc.1/libc/sysdeps/linux/common/ppoll.c
11 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
15 #include <sys/syscall.h>
20 # define __NR___libc_ppoll __NR_ppoll
21 static __always_inline
22 -_syscall4(int, __libc_ppoll, struct pollfd *, fds,
23 +_syscall5(int, __libc_ppoll, struct pollfd *, fds,
24 nfds_t, nfds, const struct timespec *, timeout,
25 - const __sigset_t *, sigmask)
26 + const __sigset_t *, sigmask, size_t, sigsetsize)
29 ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout,
34 - return __libc_ppoll(fds, nfds, timeout, sigmask);
35 + return __libc_ppoll(fds, nfds, timeout, sigmask, _NSIG / 8);
37 libc_hidden_def(ppoll)