summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r--src/core/hle/kernel/mutex.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index fa924404d..5465b7a3c 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -24,8 +24,12 @@ public:
24 Handle lock_thread; ///< Handle to thread that currently has mutex 24 Handle lock_thread; ///< Handle to thread that currently has mutex
25 std::vector<Handle> waiting_threads; ///< Threads that are waiting for the mutex 25 std::vector<Handle> waiting_threads; ///< Threads that are waiting for the mutex
26 26
27 /// Synchronize kernel object 27 /**
28 Result SyncRequest() { 28 * Synchronize kernel object
29 * @param wait Boolean wait set if current thread should wait as a result of sync operation
30 * @return Result of operation, 0 on success, otherwise error code
31 */
32 Result SyncRequest(bool* wait) {
29 return 0; 33 return 0;
30 } 34 }
31}; 35};