Fix simulation trace impl occurence
This commit is contained in:
parent
0beab42b78
commit
734bdb72e1
|
@ -473,7 +473,11 @@ public:
|
|||
barriers->push(f);
|
||||
writer->post( new WriterThread::Barrier );
|
||||
|
||||
f.getBlocking();
|
||||
if (g_network->isSimulated()) {
|
||||
ASSERT(f.isReady());
|
||||
} else {
|
||||
f.getBlocking();
|
||||
}
|
||||
|
||||
opened = false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue