summaryrefslogtreecommitdiff
path: root/test/nptl/tst-cond22.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-06 17:48:49 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-06 17:48:49 +0100
commit2ce94b3cb4db55c981ee6f2cbe1d3e790e89a2b7 (patch)
tree4b86ffd597b7c629cf3e65a3e3c2a918acd9a409 /test/nptl/tst-cond22.c
parent094224b6b6a11ae8cb5b7d47e62e25235704fe0b (diff)
allow to compile and run on musl based systems
This is a first shot, more improvements required to allow to run more tests.
Diffstat (limited to 'test/nptl/tst-cond22.c')
-rw-r--r--test/nptl/tst-cond22.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/nptl/tst-cond22.c b/test/nptl/tst-cond22.c
index bd978e5..3255cc0 100644
--- a/test/nptl/tst-cond22.c
+++ b/test/nptl/tst-cond22.c
@@ -2,7 +2,7 @@
#include <stdio.h>
#include <stdlib.h>
-
+#if defined(__GLIBC__) || defined(__UCLIBC__)
static pthread_barrier_t b;
static pthread_cond_t c = PTHREAD_COND_INITIALIZER;
static pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;
@@ -49,11 +49,12 @@ tf (void *arg)
}
return NULL;
}
-
+#endif
static int
do_test (void)
{
+#if defined(__GLIBC__) || defined(__UCLIBC__)
int status = 0;
if (pthread_barrier_init (&b, NULL, 2) != 0)
@@ -154,6 +155,9 @@ do_test (void)
c.__data.__nwaiters, c.__data.__broadcast_seq);
return status;
+#else
+ return 23;
+#endif
}
#define TEST_FUNCTION do_test ()