blob: d2d6d76fd7d7c569b764f94ec4aebb0bd3a22ba1 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From 77c95dacffe90382a1f131c801ac569120d95949 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 8 Jan 2016 07:32:24 +0000
4Subject: [PATCH 30/32] lib: Use PTHREAD_MUTEX_RECURSIVE in place of
5 PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP for non-glibc
6
7e.g. musl does not implement the _NP mutex types
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 lib/tst_res.c | 5 ++++-
12 1 file changed, 4 insertions(+), 1 deletion(-)
13
14diff --git a/lib/tst_res.c b/lib/tst_res.c
15index 5c1c58c..3244b5e 100644
16--- a/lib/tst_res.c
17+++ b/lib/tst_res.c
18@@ -104,8 +104,11 @@ int TEST_ERRNO;
19 assert(strlen(buf) > 0); \
20 } while (0)
21
22+#ifdef __GLIBC__
23 static pthread_mutex_t tmutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
24-
25+#else
26+static pthread_mutex_t tmutex = { PTHREAD_MUTEX_RECURSIVE };
27+#endif
28 /*
29 * Define local function prototypes.
30 */
31--
322.7.0
33