diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-05-12 00:44:01 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-05-12 00:44:01 +0200 |
commit | 787e584f18afc967d91cfe1a8443df2657579ecb (patch) | |
tree | 3dd1985a9f3f66389cb988e8e64fef05aa7aa212 | |
parent | 938ada9f8654fa87f5788b42cfa27feccd45dec7 (diff) |
disable for glibc
-rw-r--r-- | test/nptl/tst-cond22.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nptl/tst-cond22.c b/test/nptl/tst-cond22.c index 3255cc0..23697dd 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__) +#if defined(__UCLIBC__) static pthread_barrier_t b; static pthread_cond_t c = PTHREAD_COND_INITIALIZER; static pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER; @@ -54,7 +54,7 @@ tf (void *arg) static int do_test (void) { -#if defined(__GLIBC__) || defined(__UCLIBC__) +#if defined(__UCLIBC__) int status = 0; if (pthread_barrier_init (&b, NULL, 2) != 0) |