diff options
| author | 2015-09-10 11:07:33 -0400 | |
|---|---|---|
| committer | 2015-09-10 11:20:21 -0400 | |
| commit | d3efa637b448f1be84397deab0b1355bbc901e3b (patch) | |
| tree | 0e9d245bb4509b26c9544012a3d38bd5329e7e55 /src/core/hle/kernel/mutex.h | |
| parent | Merge pull request #1131 from lioncash/uninit (diff) | |
| download | yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.gz yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.xz yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.zip | |
General: Fix up doxygen comments
Diffstat (limited to 'src/core/hle/kernel/mutex.h')
| -rw-r--r-- | src/core/hle/kernel/mutex.h | 7 |
1 files changed, 3 insertions, 4 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: | |||
| 38 | void Acquire() override; | 38 | void Acquire() override; |
| 39 | 39 | ||
| 40 | /** | 40 | /** |
| 41 | * Acquires the specified mutex for the specified thread | 41 | * Acquires the specified mutex for the specified thread |
| 42 | * @param mutex Mutex that is to be acquired | 42 | * @param thread Thread that will acquire the mutex |
| 43 | * @param thread Thread that will acquire the mutex | 43 | */ |
| 44 | */ | ||
| 45 | void Acquire(SharedPtr<Thread> thread); | 44 | void Acquire(SharedPtr<Thread> thread); |
| 46 | void Release(); | 45 | void Release(); |
| 47 | 46 | ||