diff options
Diffstat (limited to 'src/core/hle/kernel/event.cpp')
| -rw-r--r-- | src/core/hle/kernel/event.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/hle/kernel/event.cpp b/src/core/hle/kernel/event.cpp index 787e9f5fd..36c7dcbc8 100644 --- a/src/core/hle/kernel/event.cpp +++ b/src/core/hle/kernel/event.cpp | |||
| @@ -31,17 +31,6 @@ public: | |||
| 31 | std::string name; ///< Name of event (optional) | 31 | std::string name; ///< Name of event (optional) |
| 32 | 32 | ||
| 33 | /** | 33 | /** |
| 34 | * Synchronize kernel object | ||
| 35 | * @param wait Boolean wait set if current thread should wait as a result of sync operation | ||
| 36 | * @return Result of operation, 0 on success, otherwise error code | ||
| 37 | */ | ||
| 38 | Result SyncRequest(bool* wait) { | ||
| 39 | // TODO(bunnei): ImplementMe | ||
| 40 | ERROR_LOG(KERNEL, "(UMIMPLEMENTED) call"); | ||
| 41 | return 0; | ||
| 42 | } | ||
| 43 | |||
| 44 | /** | ||
| 45 | * Wait for kernel object to synchronize | 34 | * Wait for kernel object to synchronize |
| 46 | * @param wait Boolean wait set if current thread should wait as a result of sync operation | 35 | * @param wait Boolean wait set if current thread should wait as a result of sync operation |
| 47 | * @return Result of operation, 0 on success, otherwise error code | 36 | * @return Result of operation, 0 on success, otherwise error code |