From 2ce94b3cb4db55c981ee6f2cbe1d3e790e89a2b7 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 6 Nov 2016 17:48:49 +0100 Subject: allow to compile and run on musl based systems This is a first shot, more improvements required to allow to run more tests. --- test/nptl/tst-initializers1.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/nptl/tst-initializers1.c') diff --git a/test/nptl/tst-initializers1.c b/test/nptl/tst-initializers1.c index 1e35380..6a458f1 100644 --- a/test/nptl/tst-initializers1.c +++ b/test/nptl/tst-initializers1.c @@ -18,6 +18,7 @@ #include +#if defined(__GLIBC__) || defined(__UCLIBC__) pthread_mutex_t mtx_normal = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t mtx_recursive = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP; pthread_mutex_t mtx_errorchk = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP; @@ -26,10 +27,12 @@ pthread_rwlock_t rwl_normal = PTHREAD_RWLOCK_INITIALIZER; pthread_rwlock_t rwl_writer = PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP; pthread_cond_t cond = PTHREAD_COND_INITIALIZER; +#endif int main (void) { +#if defined(__GLIBC__) || defined(__UCLIBC__) if (mtx_normal.__data.__kind != PTHREAD_MUTEX_TIMED_NP) return 1; if (mtx_recursive.__data.__kind != PTHREAD_MUTEX_RECURSIVE_NP) @@ -44,4 +47,7 @@ main (void) != PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP) return 1; return 0; +#else + return 23; +#endif } -- cgit v1.2.3