mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 13:58:07 -05:00
hle: kernel: Move slab heap management to KernelCore.
This commit is contained in:
@ -617,7 +617,9 @@ KScheduler::KScheduler(Core::System& system, s32 core_id) : system(system), core
|
||||
state.highest_priority_thread = nullptr;
|
||||
}
|
||||
|
||||
KScheduler::~KScheduler() = default;
|
||||
KScheduler::~KScheduler() {
|
||||
idle_thread->Close();
|
||||
}
|
||||
|
||||
KThread* KScheduler::GetCurrentThread() const {
|
||||
if (auto result = current_thread.load(); result) {
|
||||
|
Reference in New Issue
Block a user