Fix simulation trace impl occurence

This commit is contained in:
Andrew Noyes 2020-09-15 16:49:31 +00:00
parent 0beab42b78
commit 734bdb72e1
1 changed files with 5 additions and 1 deletions

View File

@ -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;
}