Fix: test_mutex.c uninitialized mutex
[urcu.git] / tests / benchmark / test_mutex.c
index 255acfcabae07de9042c5a819af4abfb16d6c72d..919654daa063d6589ec3e51ed99a8a8bc2c30a97 100644 (file)
@@ -52,7 +52,7 @@ struct test_array {
        int a;
 };
 
-static pthread_mutex_t lock;
+static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
 
 static volatile int test_go, test_stop;
 
This page took 0.022222 seconds and 4 git commands to generate.