Event: Updated several log messages to be assertions.
This commit is contained in:
parent
06fa90a262
commit
60185a56fd
1 changed files with 8 additions and 16 deletions
|
@ -58,10 +58,8 @@ public:
|
|||
*/
|
||||
Result SetPermanentLock(Handle handle, const bool permanent_locked) {
|
||||
Event* evt = g_object_pool.GetFast<Event>(handle);
|
||||
if (!evt) {
|
||||
ERROR_LOG(KERNEL, "called with unknown handle=0x%08X", handle);
|
||||
return -1;
|
||||
}
|
||||
_assert_msg_(KERNEL, (evt != nullptr), "called, but event is nullptr!");
|
||||
|
||||
evt->permanent_locked = permanent_locked;
|
||||
return 0;
|
||||
}
|
||||
|
@ -74,10 +72,8 @@ Result SetPermanentLock(Handle handle, const bool permanent_locked) {
|
|||
*/
|
||||
Result SetEventLocked(const Handle handle, const bool locked) {
|
||||
Event* evt = g_object_pool.GetFast<Event>(handle);
|
||||
if (!evt) {
|
||||
ERROR_LOG(KERNEL, "called with unknown handle=0x%08X", handle);
|
||||
return -1;
|
||||
}
|
||||
_assert_msg_(KERNEL, (evt != nullptr), "called, but event is nullptr!");
|
||||
|
||||
if (!evt->permanent_locked) {
|
||||
evt->locked = locked;
|
||||
}
|
||||
|
@ -91,10 +87,8 @@ Result SetEventLocked(const Handle handle, const bool locked) {
|
|||
*/
|
||||
Result SignalEvent(const Handle handle) {
|
||||
Event* evt = g_object_pool.GetFast<Event>(handle);
|
||||
if (!evt) {
|
||||
ERROR_LOG(KERNEL, "called with unknown handle=0x%08X", handle);
|
||||
return -1;
|
||||
}
|
||||
_assert_msg_(KERNEL, (evt != nullptr), "called, but event is nullptr!");
|
||||
|
||||
// Resume threads waiting for event to signal
|
||||
bool event_caught = false;
|
||||
for (size_t i = 0; i < evt->waiting_threads.size(); ++i) {
|
||||
|
@ -121,10 +115,8 @@ Result SignalEvent(const Handle handle) {
|
|||
*/
|
||||
Result ClearEvent(Handle handle) {
|
||||
Event* evt = g_object_pool.GetFast<Event>(handle);
|
||||
if (!evt) {
|
||||
ERROR_LOG(KERNEL, "called with unknown handle=0x%08X", handle);
|
||||
return -1;
|
||||
}
|
||||
_assert_msg_(KERNEL, (evt != nullptr), "called, but event is nullptr!");
|
||||
|
||||
if (!evt->permanent_locked) {
|
||||
evt->locked = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue