summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-20 20:33:34 +0100
committerbunnei <bunneidev@gmail.com>2015-01-20 20:33:34 +0100
commit7c21b80236d98a74b423e11f33287f3cbfb33e55 (patch)
treeae1c517edf0791d3b9c8ed79a941e4ad7d2e973f /src/core/hle/kernel/thread.h
parentMerge pull request #492 from archshift/apt (diff)
parentcore: Fix a few docstrings (diff)
downloadyuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar
yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar.gz
yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar.bz2
yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar.lz
yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar.xz
yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar.zst
yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.zip
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 284dec400..8c9f63aa5 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -134,7 +134,7 @@ void WaitCurrentThread(WaitType wait_type, Object* wait_object = GetCurrentThrea
/**
* Schedules an event to wake up the specified thread after the specified delay.
- * @param handle The thread handle.
+ * @param thread The thread to wake after the delay.
* @param nanoseconds The time this thread will be allowed to sleep for.
*/
void WakeThreadAfterDelay(Thread* thread, s64 nanoseconds);