summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/event.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-11-01 00:19:20 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2014-11-24 20:08:36 +0100
commit22c86824a4e4fe8953d7104f2fbdf853d3d30c60 (patch)
tree30f8b8e1d71c08d8da53fb2ba980542aba5b4010 /src/core/hle/kernel/event.h
parentHLE: Revamp error handling throrough the HLE code (diff)
downloadyuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.gz
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.bz2
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.lz
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.xz
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.zst
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.zip
Diffstat (limited to 'src/core/hle/kernel/event.h')
-rw-r--r--src/core/hle/kernel/event.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/kernel/event.h b/src/core/hle/kernel/event.h
index 6c17ed232..73aec4e79 100644
--- a/src/core/hle/kernel/event.h
+++ b/src/core/hle/kernel/event.h
@@ -15,7 +15,6 @@ namespace Kernel {
* Changes whether an event is locked or not
* @param handle Handle to event to change
* @param locked Boolean locked value to set event
- * @return Result of operation, 0 on success, otherwise error code
*/
ResultCode SetEventLocked(const Handle handle, const bool locked);
@@ -23,21 +22,18 @@ ResultCode SetEventLocked(const Handle handle, const bool locked);
* Hackish function to set an events permanent lock state, used to pass through synch blocks
* @param handle Handle to event to change
* @param permanent_locked Boolean permanent locked value to set event
- * @return Result of operation, 0 on success, otherwise error code
*/
ResultCode 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
*/
ResultCode SignalEvent(const Handle handle);
/**
* Clears an event
* @param handle Handle to event to clear
- * @return Result of operation, 0 on success, otherwise error code
*/
ResultCode ClearEvent(Handle handle);