[git commit master] conditional cancellation-point test of usleep

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Wed Nov 25 14:42:50 UTC 2009


commit: http://git.uclibc.org/uClibc/commit/?id=12fde89674c46989fb5b3a76e25b7defe90c4845
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

usleep is a SUSv3 function

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 test/pthread/cancellation-points.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/test/pthread/cancellation-points.c b/test/pthread/cancellation-points.c
index 3fe49fc..af5df3a 100644
--- a/test/pthread/cancellation-points.c
+++ b/test/pthread/cancellation-points.c
@@ -149,7 +149,9 @@ MAKE_CANCEL_THREAD_FUNC(sigwaitinfo, (NULL, NULL))
 MAKE_CANCEL_THREAD_FUNC(sleep, (0))
 MAKE_CANCEL_THREAD_FUNC(system, (""))
 MAKE_CANCEL_THREAD_FUNC(tcdrain, (-1))
+#ifdef __UCLIBC_SUSV3_LEGACY__
 MAKE_CANCEL_THREAD_FUNC(usleep, (0))
+#endif
 MAKE_CANCEL_THREAD_FUNC(wait, (NULL))
 MAKE_CANCEL_THREAD_FUNC(waitid, (0, 0, NULL, 0))
 MAKE_CANCEL_THREAD_FUNC(waitpid, (-1, NULL, 0))
@@ -264,7 +266,9 @@ int main(int argc, char *argv[])
 	ret += TEST_FUNC(sleep);
 	ret += TEST_FUNC(system);
 	ret += TEST_FUNC(tcdrain);
+#ifdef __UCLIBC_SUSV3_LEGACY__
 	ret += TEST_FUNC(usleep);
+#endif
 	ret += TEST_FUNC(wait);
 	ret += TEST_FUNC(waitid);
 	ret += TEST_FUNC(waitpid);
-- 
1.6.3.3



More information about the uClibc-cvs mailing list