svn commit: trunk/uClibc/libc/sysdeps/linux/common
kraj at uclibc.org
kraj at uclibc.org
Thu Mar 1 22:00:04 UTC 2007
Author: kraj
Date: 2007-03-01 13:59:59 -0800 (Thu, 01 Mar 2007)
New Revision: 17995
Log:
Should be __sigset_t instead of sigset_t.
Modified:
trunk/uClibc/libc/sysdeps/linux/common/ppoll.c
Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/ppoll.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/ppoll.c 2007-02-28 23:14:06 UTC (rev 17994)
+++ trunk/uClibc/libc/sysdeps/linux/common/ppoll.c 2007-03-01 21:59:59 UTC (rev 17995)
@@ -26,11 +26,11 @@
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. */
More information about the uClibc-cvs
mailing list