diff options
| author | 2015-01-20 14:33:34 -0500 | |
|---|---|---|
| committer | 2015-01-20 14:33:34 -0500 | |
| commit | 7c21b80236d98a74b423e11f33287f3cbfb33e55 (patch) | |
| tree | ae1c517edf0791d3b9c8ed79a941e4ad7d2e973f /src/core/hle/kernel | |
| parent | Merge pull request #492 from archshift/apt (diff) | |
| parent | core: Fix a few docstrings (diff) | |
| download | yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar.gz yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.tar.xz yuzu-7c21b80236d98a74b423e11f33287f3cbfb33e55.zip | |
Merge pull request #499 from lioncash/docs
core: Fix a few docstrings
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 2 | ||||
| -rw-r--r-- | src/core/hle/kernel/timer.h | 2 |
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 | |||
| 134 | 134 | ||
| 135 | /** | 135 | /** |
| 136 | * Schedules an event to wake up the specified thread after the specified delay. | 136 | * Schedules an event to wake up the specified thread after the specified delay. |
| 137 | * @param handle The thread handle. | 137 | * @param thread The thread to wake after the delay. |
| 138 | * @param nanoseconds The time this thread will be allowed to sleep for. | 138 | * @param nanoseconds The time this thread will be allowed to sleep for. |
| 139 | */ | 139 | */ |
| 140 | void WakeThreadAfterDelay(Thread* thread, s64 nanoseconds); | 140 | 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); | |||
| 33 | 33 | ||
| 34 | /** | 34 | /** |
| 35 | * Creates a timer | 35 | * Creates a timer |
| 36 | * @param Handle to newly created Timer object | 36 | * @param handle Handle to the newly created Timer object |
| 37 | * @param reset_type ResetType describing how to create the timer | 37 | * @param reset_type ResetType describing how to create the timer |
| 38 | * @param name Optional name of timer | 38 | * @param name Optional name of timer |
| 39 | * @return ResultCode of the error | 39 | * @return ResultCode of the error |