Don't lock memory on fast path.

This commit is contained in:
Bartosz Taudul
2020-01-03 00:25:01 +01:00
parent a35e1e7a8c
commit 8588b8b4a6

View File

@@ -143,7 +143,7 @@ public:
static tracy_force_inline void CommitNext( char* nextPtr )
{
lfq.tail->store( nextPtr );
lfq.tail->store( nextPtr, std::memory_order_release );
}