summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-22 19:06:12 -0400
committerGravatar bunnei2014-05-22 19:06:12 -0400
commitd26f3d4c1ff27f740fe7185e1bca7dcfc5851919 (patch)
treec6593a3d3044fbe4f183122d7d6f6b40f175b66c /src/core/hle/kernel/thread.h
parentcore: moved armcopro.cpp to correct filter folder (arm/interpreter) (diff)
downloadyuzu-d26f3d4c1ff27f740fe7185e1bca7dcfc5851919.tar.gz
yuzu-d26f3d4c1ff27f740fe7185e1bca7dcfc5851919.tar.xz
yuzu-d26f3d4c1ff27f740fe7185e1bca7dcfc5851919.zip
kernel: refactored function naming to remove "__" prefix
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 82bf16082..a9e9eb95f 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -59,8 +59,8 @@ void WaitCurThread(WaitType wait_type, const char* reason);
59/// Resumes a thread from waiting by marking it as "ready" 59/// Resumes a thread from waiting by marking it as "ready"
60void ResumeThreadFromWait(Handle handle); 60void ResumeThreadFromWait(Handle handle);
61 61
62/// Gets the current thread 62/// Gets the current thread handle
63Handle GetCurrentThread(); 63Handle GetCurrentThreadHandle();
64 64
65/// Put current thread in a wait state - on WaitSynchronization 65/// Put current thread in a wait state - on WaitSynchronization
66void WaitThread_Synchronization(); 66void WaitThread_Synchronization();