diff options
author | Lioncash <mathew1800@gmail.com> | 2015-09-10 17:07:33 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-09-10 17:20:21 +0200 |
commit | d3efa637b448f1be84397deab0b1355bbc901e3b (patch) | |
tree | 0e9d245bb4509b26c9544012a3d38bd5329e7e55 /src/core/hle/kernel | |
parent | Merge pull request #1131 from lioncash/uninit (diff) | |
download | yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.gz yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.bz2 yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.lz yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.xz yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.zst yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.zip |
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/mutex.h | 7 | ||||
-rw-r--r-- | src/core/hle/kernel/semaphore.h | 1 | ||||
-rw-r--r-- | src/core/hle/kernel/thread.h | 1 |
3 files changed, 3 insertions, 6 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h index d6d5328be..1746360e4 100644 --- a/src/core/hle/kernel/mutex.h +++ b/src/core/hle/kernel/mutex.h @@ -38,10 +38,9 @@ public: void Acquire() override; /** - * Acquires the specified mutex for the specified thread - * @param mutex Mutex that is to be acquired - * @param thread Thread that will acquire the mutex - */ + * Acquires the specified mutex for the specified thread + * @param thread Thread that will acquire the mutex + */ void Acquire(SharedPtr<Thread> thread); void Release(); diff --git a/src/core/hle/kernel/semaphore.h b/src/core/hle/kernel/semaphore.h index d8dc1fd78..390f5e495 100644 --- a/src/core/hle/kernel/semaphore.h +++ b/src/core/hle/kernel/semaphore.h @@ -17,7 +17,6 @@ class Semaphore final : public WaitObject { public: /** * Creates a semaphore. - * @param handle Pointer to the handle of the newly created object * @param initial_count Number of slots reserved for other threads * @param max_count Maximum number of slots the semaphore can have * @param name Optional name of semaphore diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 1ff1d9b97..97ba57fc5 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -57,7 +57,6 @@ public: * @param arg User data to pass to the thread * @param processor_id The ID(s) of the processors on which the thread is desired to be run * @param stack_top The address of the thread's stack top - * @param stack_size The size of the thread's stack * @return A shared pointer to the newly created thread */ static ResultVal<SharedPtr<Thread>> Create(std::string name, VAddr entry_point, s32 priority, |