event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some comments

This commit is contained in:
bunnei 2014-05-29 20:00:44 -04:00
parent 545e6919ce
commit d51c84dde2
2 changed files with 14 additions and 9 deletions

View file

@ -15,8 +15,9 @@ 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
*/
void SetEventLocked(const Handle handle, const bool locked);
Result SetEventLocked(const Handle handle, const bool locked);
/**
* Clears an event
@ -28,7 +29,7 @@ Result ClearEvent(Handle handle);
/**
* Creates an event
* @param reset_type ResetType describing how to create event
* @return Handle to newly created object
* @return Handle to newly created Event object
*/
Handle CreateEvent(const ResetType reset_type);