diff options
Diffstat (limited to 'src/core/hle')
| -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, | |||
| 28 | /// Sets up the primary application thread | 28 | /// Sets up the primary application thread |
| 29 | Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK_SIZE); | 29 | Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK_SIZE); |
| 30 | 30 | ||
| 31 | /// Reschedules to the next available thread (call after current thread is suspended) | ||
| 32 | void __KernelReschedule(const char *reason); | ||
| 33 | |||
| 31 | void __KernelThreadingInit(); | 34 | void __KernelThreadingInit(); |
| 32 | void __KernelThreadingShutdown(); | 35 | void __KernelThreadingShutdown(); |
| 33 | 36 | ||