projects
/
cdsspec-compiler.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb9e3f6
)
edist
author
Peizhao Ou
<peizhaoo@uci.edu>
Thu, 19 Nov 2015 00:42:05 +0000
(16:42 -0800)
committer
Peizhao Ou
<peizhaoo@uci.edu>
Thu, 19 Nov 2015 00:42:05 +0000
(16:42 -0800)
benchmark/seqlock/seqlock.cc
patch
|
blob
|
history
diff --git
a/benchmark/seqlock/seqlock.cc
b/benchmark/seqlock/seqlock.cc
index 4d35fba698c29a9a6a3d4b0d66ef1a8dfff6298b..c744435fc1956b47d046ebd814adbb8962a1eda7 100644
(file)
--- a/
benchmark/seqlock/seqlock.cc
+++ b/
benchmark/seqlock/seqlock.cc
@@
-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;
}