Revert change since it is not needed

This commit is contained in:
gingerBill
2024-02-21 12:58:26 +00:00
parent d7b7804215
commit 21d1c0e5a4

View File

@@ -112,7 +112,7 @@ struct Wait_Signal {
};
gb_internal void wait_signal_until_available(Wait_Signal *ws) {
while (ws->futex.load() == 0) {
if (ws->futex.load() == 0) {
futex_wait(&ws->futex, 1);
}
}