summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/event.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2014-10-31 21:19:20 -0200
committerGravatar Yuri Kunde Schlesner2014-11-24 17:08:36 -0200
commit22c86824a4e4fe8953d7104f2fbdf853d3d30c60 (patch)
tree30f8b8e1d71c08d8da53fb2ba980542aba5b4010 /src/core/hle/kernel/event.h
parentHLE: Revamp error handling throrough the HLE code (diff)
downloadyuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.gz
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.xz
yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.zip
Remove duplicated docs/update them for changed parameters.
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 {
15 * Changes whether an event is locked or not 15 * Changes whether an event is locked or not
16 * @param handle Handle to event to change 16 * @param handle Handle to event to change
17 * @param locked Boolean locked value to set event 17 * @param locked Boolean locked value to set event
18 * @return Result of operation, 0 on success, otherwise error code
19 */ 18 */
20ResultCode SetEventLocked(const Handle handle, const bool locked); 19ResultCode SetEventLocked(const Handle handle, const bool locked);
21 20
@@ -23,21 +22,18 @@ ResultCode SetEventLocked(const Handle handle, const bool locked);
23 * Hackish function to set an events permanent lock state, used to pass through synch blocks 22 * Hackish function to set an events permanent lock state, used to pass through synch blocks
24 * @param handle Handle to event to change 23 * @param handle Handle to event to change
25 * @param permanent_locked Boolean permanent locked value to set event 24 * @param permanent_locked Boolean permanent locked value to set event
26 * @return Result of operation, 0 on success, otherwise error code
27 */ 25 */
28ResultCode SetPermanentLock(Handle handle, const bool permanent_locked); 26ResultCode SetPermanentLock(Handle handle, const bool permanent_locked);
29 27
30/** 28/**
31 * Signals an event 29 * Signals an event
32 * @param handle Handle to event to signal 30 * @param handle Handle to event to signal
33 * @return Result of operation, 0 on success, otherwise error code
34 */ 31 */
35ResultCode SignalEvent(const Handle handle); 32ResultCode SignalEvent(const Handle handle);
36 33
37/** 34/**
38 * Clears an event 35 * Clears an event
39 * @param handle Handle to event to clear 36 * @param handle Handle to event to clear
40 * @return Result of operation, 0 on success, otherwise error code
41 */ 37 */
42ResultCode ClearEvent(Handle handle); 38ResultCode ClearEvent(Handle handle);
43 39