svn commit: branches/uClibc-nptl/test/dlopen

kraj at uclibc.org kraj at uclibc.org
Fri Aug 15 05:28:09 UTC 2008


Author: kraj
Date: 2008-08-14 22:28:09 -0700 (Thu, 14 Aug 2008)
New Revision: 23082

Log:
Use pthread_once now __pthread_once is not defined in tests.


Modified:
   branches/uClibc-nptl/test/dlopen/libtest.c


Changeset:
Modified: branches/uClibc-nptl/test/dlopen/libtest.c
===================================================================
--- branches/uClibc-nptl/test/dlopen/libtest.c	2008-08-15 05:26:51 UTC (rev 23081)
+++ branches/uClibc-nptl/test/dlopen/libtest.c	2008-08-15 05:28:09 UTC (rev 23082)
@@ -7,7 +7,7 @@
 void dltest(uint32_t **value1, uint32_t **value2);
 void dltest(uint32_t **value1, uint32_t **value2)
 {
-	*value1 = (uint32_t *) __pthread_once;
+	*value1 = (uint32_t *) pthread_once;
 	*value2 = (uint32_t *) pthread_self;
 }
 




More information about the uClibc-cvs mailing list