diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-06 04:35:36 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-13 15:51:02 +0200 |
commit | f5c7c1543434e25a215286e6db5e71c055ba48cf (patch) | |
tree | 488a3fd0c01051453c6f8ccc4867f6b6ea3f2843 /src/core/hle/kernel/event.h | |
parent | qt: updated disassembler to show 2X as many instructions (diff) | |
download | yuzu-f5c7c1543434e25a215286e6db5e71c055ba48cf.tar yuzu-f5c7c1543434e25a215286e6db5e71c055ba48cf.tar.gz yuzu-f5c7c1543434e25a215286e6db5e71c055ba48cf.tar.bz2 yuzu-f5c7c1543434e25a215286e6db5e71c055ba48cf.tar.lz yuzu-f5c7c1543434e25a215286e6db5e71c055ba48cf.tar.xz yuzu-f5c7c1543434e25a215286e6db5e71c055ba48cf.tar.zst yuzu-f5c7c1543434e25a215286e6db5e71c055ba48cf.zip |
Diffstat (limited to 'src/core/hle/kernel/event.h')
-rw-r--r-- | src/core/hle/kernel/event.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/kernel/event.h b/src/core/hle/kernel/event.h index eed09f0e3..3527b01fd 100644 --- a/src/core/hle/kernel/event.h +++ b/src/core/hle/kernel/event.h @@ -28,6 +28,13 @@ Result SetEventLocked(const Handle handle, const bool locked); Result SetPermanentLock(Handle handle, const bool permanent_locked); /** + * Signals an event + * @param handle Handle to event to signal + * @return Result of operation, 0 on success, otherwise error code + */ +Result SignalEvent(const Handle handle); + +/** * Clears an event * @param handle Handle to event to clear * @return Result of operation, 0 on success, otherwise error code |