summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index c26071276..f1bb78801 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -53,7 +53,10 @@ public:
53 * @param wait Boolean wait set if current thread should wait as a result of sync operation 53 * @param wait Boolean wait set if current thread should wait as a result of sync operation
54 * @return Result of operation, 0 on success, otherwise error code 54 * @return Result of operation, 0 on success, otherwise error code
55 */ 55 */
56 virtual Result SyncRequest(bool* wait) = 0; 56 virtual Result SyncRequest(bool* wait) {
57 ERROR_LOG(KERNEL, "(UNIMPLEMENTED)");
58 return -1;
59 }
57 60
58 /** 61 /**
59 * Wait for kernel object to synchronize 62 * Wait for kernel object to synchronize
@@ -61,7 +64,6 @@ public:
61 * @return Result of operation, 0 on success, otherwise error code 64 * @return Result of operation, 0 on success, otherwise error code
62 */ 65 */
63 virtual Result WaitSynchronization(bool* wait) = 0; 66 virtual Result WaitSynchronization(bool* wait) = 0;
64
65}; 67};
66 68
67class ObjectPool : NonCopyable { 69class ObjectPool : NonCopyable {