diff options
| author | 2014-05-20 23:23:58 -0400 | |
|---|---|---|
| committer | 2014-05-20 23:23:58 -0400 | |
| commit | eb537c560a33db9955413a96afd3b98203a729fe (patch) | |
| tree | 6bb55926f3b811a578a2680b0cd454476a144244 /src/core/hle/kernel/mutex.h | |
| parent | mutex: initial commit of HLE module (diff) | |
| download | yuzu-eb537c560a33db9955413a96afd3b98203a729fe.tar.gz yuzu-eb537c560a33db9955413a96afd3b98203a729fe.tar.xz yuzu-eb537c560a33db9955413a96afd3b98203a729fe.zip | |
mutex: refactored the interface to code to return a Mutex* handle
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 1f843e979..871e2e562 100644 --- a/src/core/hle/kernel/mutex.h +++ b/src/core/hle/kernel/mutex.h | |||
| @@ -21,6 +21,6 @@ Result ReleaseMutex(Handle handle); | |||
| 21 | * @param handle Reference to handle for the newly created mutex | 21 | * @param handle Reference to handle for the newly created mutex |
| 22 | * @param initial_locked Specifies if the mutex should be locked initially | 22 | * @param initial_locked Specifies if the mutex should be locked initially |
| 23 | */ | 23 | */ |
| 24 | Result CreateMutex(Handle& handle, bool initial_locked); | 24 | Handle CreateMutex(bool initial_locked); |
| 25 | 25 | ||
| 26 | } // namespace | 26 | } // namespace |