projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6baf48e
)
barrier bug
author
bdemsky
<bdemsky>
Tue, 21 Apr 2009 00:05:58 +0000
(
00:05
+0000)
committer
bdemsky
<bdemsky>
Tue, 21 Apr 2009 00:05:58 +0000
(
00:05
+0000)
Robust/src/Runtime/runtime.c
patch
|
blob
|
history
diff --git
a/Robust/src/Runtime/runtime.c
b/Robust/src/Runtime/runtime.c
index 057ccb827c87937bcb83b0b950e96155dc267419..dfd8cf892dde38230f74c7fb1591192e9047cde5 100644
(file)
--- a/
Robust/src/Runtime/runtime.c
+++ b/
Robust/src/Runtime/runtime.c
@@
-206,7
+206,7
@@
void CALL00(___Barrier______enterBarrier____) {
// Synchronization point
int ret;
ret = pthread_barrier_wait(&barrier);
- if(ret != 0) {
+ if(ret != 0
&& ret != PTHREAD_BARRIER_SERIAL_THREAD
) {
printf("%s() Could not wait on barrier: error %d\n", __func__, errno);
perror("");
exit(-1);