↧
Answer by PaulR for Missed optimization opportunity or required behavior due...
You could write it like this:void test() { theStack.stackFrames[1] = StackFrame{ "someFunction", 30 }; // A theStack.stackTop.store(1, std::memory_order_release); // B someFunction(); // C...
View ArticleMissed optimization opportunity or required behavior due to acquire-release...
I'm currently trying to improve the performance of a custom "pseudo" stack, which is used like this (full code is provided at the end of this post): void test() { theStack.stackFrames[1] = StackFrame{...
View Article