minor fix
[cdsspec-compiler.git] / benchmark / read-copy-update / rcu.cc
index 449463f16716f17f5927138bf109d38231a7d97f..ebe36a9f1a3fc924f0895f3b08c158cb6cc602ce 100644 (file)
@@ -138,12 +138,12 @@ int user_main(int argc, char **argv) {
        thrd_create(&t1, threadA, NULL);
        thrd_create(&t2, threadB, NULL);
        //thrd_create(&t3, threadC, NULL);
-       //thrd_create(&t4, threadD, NULL);
+       thrd_create(&t4, threadD, NULL);
 
        thrd_join(t1);
        thrd_join(t2);
        //thrd_join(t3);
-       //thrd_join(t4);
+       thrd_join(t4);
 
        return 0;
 }