瀏覽代碼

thread: added declaration for __KernelReschedule to be used by syscall module

bunnei 12 年之前
父節點
當前提交
f5a119a367
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/core/hle/kernel/thread.h

+ 3 - 0
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();