diff options
Diffstat (limited to 'src/core/hle/kernel/mutex.h')
| -rw-r--r-- | src/core/hle/kernel/mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h index a8ca97014..bb8778c98 100644 --- a/src/core/hle/kernel/mutex.h +++ b/src/core/hle/kernel/mutex.h | |||
| @@ -28,6 +28,6 @@ Handle CreateMutex(bool initial_locked, const std::string& name="Unknown"); | |||
| 28 | * Releases all the mutexes held by the specified thread | 28 | * Releases all the mutexes held by the specified thread |
| 29 | * @param thread Thread that is holding the mutexes | 29 | * @param thread Thread that is holding the mutexes |
| 30 | */ | 30 | */ |
| 31 | void ReleaseThreadMutexes(Handle thread); | 31 | void ReleaseThreadMutexes(Thread* thread); |
| 32 | 32 | ||
| 33 | } // namespace | 33 | } // namespace |