summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/kernel/thread.cpp2
-rw-r--r--src/core/hle/kernel/thread.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index b967b3c62..d0bc9c8d8 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -354,7 +354,7 @@ void __KernelReschedule(const char *reason) {
////////////////////////////////////////////////////////////////////////////////////////////////////
-/// Wait thread - on WaitSynchronization
+/// Put current thread in a wait state - on WaitSynchronization
void __KernelWaitThread_Synchronization() {
// TODO(bunnei): Just a placeholder function for now... FixMe
__KernelWaitCurThread(WAITTYPE_SYNCH, "waitSynchronization called");
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 8138be26f..0d0f46500 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -31,5 +31,5 @@ Handle __KernelSetupMainThread(s32 priority, int stack_size=KERNEL_DEFAULT_STACK
void __KernelThreadingInit();
void __KernelThreadingShutdown();
-/// Wait thread - on WaitSynchronization
+/// Put current thread in a wait state - on WaitSynchronization
void __KernelWaitThread_Synchronization();