mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibPthread: Fix some assertions
This commit is contained in:
parent
78f5c4a4c2
commit
5aa629717e
Notes:
sideshowbarker
2024-07-18 10:17:25 +09:00
Author: https://github.com/bugaevc
Commit: 5aa629717e
Pull-request: https://github.com/SerenityOS/serenity/pull/8495
2 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ int sem_post(sem_t* sem)
|
|||
if (!(value & POST_WAKES)) [[likely]]
|
||||
return 0;
|
||||
int rc = futex_wake(&sem->value, 1);
|
||||
VERIFY(rc == 0);
|
||||
VERIFY(rc >= 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue