diff options
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -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 2c0199273..bb48ddc79 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -31,6 +31,9 @@ Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE); | |||
| 31 | /// Reschedules to the next available thread (call after current thread is suspended) | 31 | /// Reschedules to the next available thread (call after current thread is suspended) |
| 32 | void Reschedule(const char* reason); | 32 | void Reschedule(const char* reason); |
| 33 | 33 | ||
| 34 | /// Resumes a thread from waiting by marking it as "ready" | ||
| 35 | void ResumeThreadFromWait(Handle handle); | ||
| 36 | |||
| 34 | /// Gets the current thread | 37 | /// Gets the current thread |
| 35 | Handle GetCurrentThread(); | 38 | Handle GetCurrentThread(); |
| 36 | 39 | ||