edist
authorPeizhao Ou <peizhaoo@uci.edu>
Thu, 19 Nov 2015 00:42:05 +0000 (16:42 -0800)
committerPeizhao Ou <peizhaoo@uci.edu>
Thu, 19 Nov 2015 00:42:05 +0000 (16:42 -0800)
benchmark/seqlock/seqlock.cc

index 4d35fba698c29a9a6a3d4b0d66ef1a8dfff6298b..c744435fc1956b47d046ebd814adbb8962a1eda7 100644 (file)
@@ -31,11 +31,11 @@ int user_main(int argc, char *argv[]) {
        thrd_t t1, t2, t3;
        thrd_create(&t1, &read_thrd, NULL);
        thrd_create(&t2, &write_thrd1, NULL);
-       thrd_create(&t3, &write_thrd2, NULL);
+       //thrd_create(&t3, &write_thrd2, NULL);
 
        thrd_join(t1);
        thrd_join(t2);
-       thrd_join(t3);
+       //thrd_join(t3);
        
        return 0;
 }