projects
/
model-checker.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f92474f
)
test: uninit: typo
author
Brian Norris
<banorris@uci.edu>
Wed, 10 Jul 2013 01:18:07 +0000
(18:18 -0700)
committer
Brian Norris
<banorris@uci.edu>
Wed, 10 Jul 2013 01:18:07 +0000
(18:18 -0700)
test/uninit.cc
patch
|
blob
|
history
diff --git
a/test/uninit.cc
b/test/uninit.cc
index 759a4fd8eaabf1f502bc22d9dddc66f8ec55e40b..b3a10261385df90a13a638fec04a39839ece182c 100644
(file)
--- a/
test/uninit.cc
+++ b/
test/uninit.cc
@@
-40,7
+40,7
@@
int user_main(int argc, char **argv)
std::atomic_init(&x, 0);
- printf("Main thread: creating
2
threads\n");
+ printf("Main thread: creating
3
threads\n");
thrd_create(&t1, (thrd_start_t)&a, NULL);
thrd_create(&t2, (thrd_start_t)&b, NULL);
thrd_create(&t3, (thrd_start_t)&c, NULL);