Fix: test_mutex.c uninitialized mutex
[userspace-rcu.git] / tests / test_mutex.c
index 41b13d8b98f1eb21064cc9a4abf806abbc1cd283..b493c4d44e0581eb02e4c8c6b1c214beeb43405a 100644 (file)
@@ -70,7 +70,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.023067 seconds and 4 git commands to generate.