diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-17 13:08:12 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-17 15:30:56 +0200 |
commit | 433b59c1121a257ae3c1503fff5b71d3f3852ab5 (patch) | |
tree | 23f4cbe699ff28d3f5907aff55f49081623d419b /src/core/hle/kernel/thread.h | |
parent | Merge pull request #2315 from ReinUsesLisp/severity-decompiler (diff) | |
download | yuzu-433b59c1121a257ae3c1503fff5b71d3f3852ab5.tar yuzu-433b59c1121a257ae3c1503fff5b71d3f3852ab5.tar.gz yuzu-433b59c1121a257ae3c1503fff5b71d3f3852ab5.tar.bz2 yuzu-433b59c1121a257ae3c1503fff5b71d3f3852ab5.tar.lz yuzu-433b59c1121a257ae3c1503fff5b71d3f3852ab5.tar.xz yuzu-433b59c1121a257ae3c1503fff5b71d3f3852ab5.tar.zst yuzu-433b59c1121a257ae3c1503fff5b71d3f3852ab5.zip |
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r-- | src/core/hle/kernel/thread.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 32026d7f0..e3c457408 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -164,11 +164,17 @@ public: return tls_memory; } - /** - * Resumes a thread from waiting - */ + /// Resumes a thread from waiting void ResumeFromWait(); + /// Cancels a waiting operation that this thread may or may not be within. + /// + /// When the thread is within a waiting state, this will set the thread's + /// waiting result to signal a canceled wait. The function will then resume + /// this thread. + /// + void CancelWait(); + /** * Schedules an event to wake up the specified thread after the specified delay * @param nanoseconds The time this thread will be allowed to sleep for |