Skip to content
Snippets Groups Projects
Commit 441199c1 authored by Eric Cano's avatar Eric Cano
Browse files

Moved annotations closed to future::get().

parent a15366f2
No related branches found
No related tags found
No related merge requests found
......@@ -59,10 +59,10 @@ std::shared_ptr<SharedQueueLock> MemArchiveQueue::sharedAddToArchiveQueue(object
globalLock.unlock();
// Wait for our request completion (this could throw, if there was a problem)
resultFuture.get();
auto ret=maqr->m_returnValue;
__attribute__((unused)) auto debugMaqr=maqr.get();
ANNOTATE_HAPPENS_AFTER(&maqr->m_promise);
ANNOTATE_HAPPENS_BEFORE_FORGET_ALL(&maqr->m_promise);
auto ret=maqr->m_returnValue;
__attribute__((unused)) auto debugMaqr=maqr.get();
maqr.reset();
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment