diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-20 04:19:48 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-20 04:19:48 +0200 |
commit | f5a119a3678fb8bc70a846a166a0993fe4a98c46 (patch) | |
tree | 332272fc37767acc1dbbb66830fe971718cbab56 | |
parent | VFP: disable DBG messages because they spam the console with unimportant skyeye junk (diff) | |
download | yuzu-f5a119a3678fb8bc70a846a166a0993fe4a98c46.tar yuzu-f5a119a3678fb8bc70a846a166a0993fe4a98c46.tar.gz yuzu-f5a119a3678fb8bc70a846a166a0993fe4a98c46.tar.bz2 yuzu-f5a119a3678fb8bc70a846a166a0993fe4a98c46.tar.lz yuzu-f5a119a3678fb8bc70a846a166a0993fe4a98c46.tar.xz yuzu-f5a119a3678fb8bc70a846a166a0993fe4a98c46.tar.zst yuzu-f5a119a3678fb8bc70a846a166a0993fe4a98c46.zip |
-rw-r--r-- | src/core/hle/kernel/thread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 0d0f46500..eca84c718 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -28,6 +28,9 @@ Handle __KernelCreateThread(const char *name, u32 entry_point, s32 priority, /// Sets up the primary application thread Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK_SIZE); +/// Reschedules to the next available thread (call after current thread is suspended) +void __KernelReschedule(const char *reason); + void __KernelThreadingInit(); void __KernelThreadingShutdown(); |