summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-20 06:04:36 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-20 06:27:47 +0100
commitadee775f443abfc17c0fe78a7487346e00b13ebc (patch)
tree3ed4e1e00a2ed7caf8009be1f4af5071ff884286 /src/core/hle/kernel/thread.h
parentMerge pull request #286 from yuriks/msvc-fix (diff)
downloadyuzu-adee775f443abfc17c0fe78a7487346e00b13ebc.tar
yuzu-adee775f443abfc17c0fe78a7487346e00b13ebc.tar.gz
yuzu-adee775f443abfc17c0fe78a7487346e00b13ebc.tar.bz2
yuzu-adee775f443abfc17c0fe78a7487346e00b13ebc.tar.lz
yuzu-adee775f443abfc17c0fe78a7487346e00b13ebc.tar.xz
yuzu-adee775f443abfc17c0fe78a7487346e00b13ebc.tar.zst
yuzu-adee775f443abfc17c0fe78a7487346e00b13ebc.zip
Diffstat (limited to '')
-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 be7adface..ec3b887d4 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -78,6 +78,9 @@ Handle ArbitrateHighestPriorityThread(u32 arbiter, u32 address);
/// Arbitrate all threads currently waiting...
void ArbitrateAllThreads(u32 arbiter, u32 address);
+/// Gets the current thread
+Thread* GetCurrentThread();
+
/// Gets the current thread handle
Handle GetCurrentThreadHandle();