Skip to content
Snippets Groups Projects
Commit 2e7802ad authored by Subv's avatar Subv
Browse files

Core/HLE: Make the 'reschedule_pending' flag atomic.

Another thread may write to this variable while the core in question is in the middle of checking for a reschedule request.
parent 3a338d92
No related branches found
No related tags found
Loading
......@@ -79,7 +79,7 @@ private:
std::shared_ptr<CpuBarrier> cpu_barrier;
std::shared_ptr<Kernel::Scheduler> scheduler;
bool reschedule_pending{};
std::atomic<bool> reschedule_pending = false;
size_t core_index;
};
......
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