From: Peizhao Ou Date: Tue, 4 Mar 2014 19:59:32 +0000 (-0800) Subject: minor fix X-Git-Url: http://plrg.eecs.uci.edu/git/?p=cdsspec-compiler.git;a=commitdiff_plain;h=5d46e8a4b05af6d08960e70d3c9ee50ec8df2bd2;ds=sidebyside minor fix --- diff --git a/benchmark/read-copy-update/rcu.cc b/benchmark/read-copy-update/rcu.cc index 449463f..ebe36a9 100644 --- a/benchmark/read-copy-update/rcu.cc +++ b/benchmark/read-copy-update/rcu.cc @@ -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; }