summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index ce63a70d3..e87867ac0 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -58,6 +58,9 @@ void Reschedule();
58/// Stops the current thread 58/// Stops the current thread
59ResultCode StopThread(Handle thread, const char* reason); 59ResultCode StopThread(Handle thread, const char* reason);
60 60
61// Retrieves the thread id of the specified thread handle
62ResultCode GetThreadId(u32* thread_id, Handle handle);
63
61/// Resumes a thread from waiting by marking it as "ready" 64/// Resumes a thread from waiting by marking it as "ready"
62void ResumeThreadFromWait(Handle handle); 65void ResumeThreadFromWait(Handle handle);
63 66