diff options
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 4acc9f220..620cd2d73 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -55,6 +55,13 @@ public: | |||
| 55 | */ | 55 | */ |
| 56 | virtual Result SyncRequest(bool* wait) = 0; | 56 | virtual Result SyncRequest(bool* wait) = 0; |
| 57 | 57 | ||
| 58 | /** | ||
| 59 | * Wait for kernel object to synchronize | ||
| 60 | * @param wait Boolean wait set if current thread should wait as a result of sync operation | ||
| 61 | * @return Result of operation, 0 on success, otherwise error code | ||
| 62 | */ | ||
| 63 | virtual Result WaitSynchronization(bool* wait) = 0; | ||
| 64 | |||
| 58 | }; | 65 | }; |
| 59 | 66 | ||
| 60 | class ObjectPool : NonCopyable { | 67 | class ObjectPool : NonCopyable { |