hle: kernel: Allocate a dummy KThread for each host thread, and use it for scheduling.

This commit is contained in:
bunnei
2021-01-21 13:00:16 -08:00
parent 37f74d8741
commit 6e953f7f02
8 changed files with 45 additions and 43 deletions

View File

@ -54,7 +54,7 @@ public:
/// Returns true if the scheduler is idle
[[nodiscard]] bool IsIdle() const {
return GetCurrentThread() == idle_thread.get();
return GetCurrentThread() == idle_thread;
}
/// Gets the timestamp for the last context switch in ticks.
@ -176,7 +176,7 @@ private:
KThread* prev_thread{};
std::atomic<KThread*> current_thread{};
std::shared_ptr<KThread> idle_thread;
KThread* idle_thread;
std::shared_ptr<Common::Fiber> switch_fiber{};