svn commit: trunk/uClibc/libc/sysdeps/linux/common

vapier at uclibc.org vapier at uclibc.org
Sun Mar 18 21:37:45 UTC 2007


Author: vapier
Date: 2007-03-18 14:37:44 -0700 (Sun, 18 Mar 2007)
New Revision: 18148

Log:
Bernd Schmidt writes: The following patch is needed for libc to be able to emulate poll with ppoll.


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-03-18 21:33:32 UTC (rev 18147)
+++ trunk/uClibc/libc/sysdeps/linux/common/ppoll.c	2007-03-18 21:37:44 UTC (rev 18148)
@@ -22,6 +22,8 @@
 
 #ifdef __NR_ppoll
 
+libc_hidden_proto(ppoll)
+
 # define __NR___libc_ppoll __NR_ppoll
 static inline
 _syscall4(int, __libc_ppoll, struct pollfd *, fds,
@@ -43,5 +45,6 @@
 
   return __libc_ppoll(fds, nfds, timeout, sigmask);
 }
+libc_hidden_def(ppoll)
 
 #endif




More information about the uClibc-cvs mailing list