summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/scheduler.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-19 01:52:47 +0100
committerbunnei <bunneidev@gmail.com>2020-11-29 10:31:52 +0100
commit4b9e1b6586a8a4017b8e3e0fb52457d1e2568066 (patch)
tree05d9368012663545db59cb28fbf093ccc6d461df /src/core/hle/kernel/scheduler.h
parentkernel: time_manager: Protect access with a mutex. (diff)
downloadyuzu-4b9e1b6586a8a4017b8e3e0fb52457d1e2568066.tar
yuzu-4b9e1b6586a8a4017b8e3e0fb52457d1e2568066.tar.gz
yuzu-4b9e1b6586a8a4017b8e3e0fb52457d1e2568066.tar.bz2
yuzu-4b9e1b6586a8a4017b8e3e0fb52457d1e2568066.tar.lz
yuzu-4b9e1b6586a8a4017b8e3e0fb52457d1e2568066.tar.xz
yuzu-4b9e1b6586a8a4017b8e3e0fb52457d1e2568066.tar.zst
yuzu-4b9e1b6586a8a4017b8e3e0fb52457d1e2568066.zip
Diffstat (limited to 'src/core/hle/kernel/scheduler.h')
-rw-r--r--src/core/hle/kernel/scheduler.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/scheduler.h b/src/core/hle/kernel/scheduler.h
index b6f04dcea..68db4a5ef 100644
--- a/src/core/hle/kernel/scheduler.h
+++ b/src/core/hle/kernel/scheduler.h
@@ -212,8 +212,10 @@ public:
/// The next two are for SingleCore Only.
/// Unload current thread before preempting core.
+ void Unload(Thread* thread);
void Unload();
/// Reload current thread after core preemption.
+ void Reload(Thread* thread);
void Reload();
/// Gets the current running thread