summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-01-20 19:52:44 +0100
committerLioncash <mathew1800@gmail.com>2015-01-20 19:52:44 +0100
commita3f5e5605c06898acbda2257fc480846ae42b47e (patch)
treeae1c517edf0791d3b9c8ed79a941e4ad7d2e973f /src/core/hle/kernel
parentMerge pull request #492 from archshift/apt (diff)
downloadyuzu-a3f5e5605c06898acbda2257fc480846ae42b47e.tar
yuzu-a3f5e5605c06898acbda2257fc480846ae42b47e.tar.gz
yuzu-a3f5e5605c06898acbda2257fc480846ae42b47e.tar.bz2
yuzu-a3f5e5605c06898acbda2257fc480846ae42b47e.tar.lz
yuzu-a3f5e5605c06898acbda2257fc480846ae42b47e.tar.xz
yuzu-a3f5e5605c06898acbda2257fc480846ae42b47e.tar.zst
yuzu-a3f5e5605c06898acbda2257fc480846ae42b47e.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/thread.h2
-rw-r--r--src/core/hle/kernel/timer.h2
2 files changed, 2 insertions, 2 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);
diff --git a/src/core/hle/kernel/timer.h b/src/core/hle/kernel/timer.h
index f8aa66b60..8170e82d4 100644
--- a/src/core/hle/kernel/timer.h
+++ b/src/core/hle/kernel/timer.h
@@ -33,7 +33,7 @@ ResultCode ClearTimer(Handle handle);
/**
* Creates a timer
- * @param Handle to newly created Timer object
+ * @param handle Handle to the newly created Timer object
* @param reset_type ResetType describing how to create the timer
* @param name Optional name of timer
* @return ResultCode of the error