OSDN Git Service

Should be __sigset_t instead of sigset_t.
authorKhem Raj <kraj@mvista.com>
Thu, 1 Mar 2007 21:59:59 +0000 (21:59 -0000)
committerKhem Raj <kraj@mvista.com>
Thu, 1 Mar 2007 21:59:59 +0000 (21:59 -0000)
libc/sysdeps/linux/common/ppoll.c

index e908ea8..3c4d341 100644 (file)
 static inline
 _syscall4(int, __libc_ppoll, struct pollfd *, fds,
        nfds_t, nfds, const struct timespec *, timeout,
-       const sigset_t *, sigmask);
+       const __sigset_t *, sigmask);
 
 int
 ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout,
-       const sigset_t *sigmask)
+       const __sigset_t *sigmask)
 {
   /* The Linux kernel can in some situations update the timeout value.
      We do not want that so use a local variable.  */