projects
/
cdsspec-compiler.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
edist
[cdsspec-compiler.git]
/
benchmark
/
seqlock
/
seqlock.cc
diff --git
a/benchmark/seqlock/seqlock.cc
b/benchmark/seqlock/seqlock.cc
index
4d35fba
..
c744435
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_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(t1);
thrd_join(t2);
- thrd_join(t3);
+
//
thrd_join(t3);
return 0;
}
return 0;
}