Fix: test_mutex.c uninitialized mutex
authorVladimir Nikulichev <nvs@tbricks.com>
Mon, 30 Sep 2013 14:32:22 +0000 (10:32 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 30 Sep 2013 14:32:22 +0000 (10:32 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.024668 seconds and 4 git commands to generate.