mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-31 11:50:07 +00:00
Revert change since it is not needed
This commit is contained in:
+1
-1
@@ -112,7 +112,7 @@ struct Wait_Signal {
|
|||||||
};
|
};
|
||||||
|
|
||||||
gb_internal void wait_signal_until_available(Wait_Signal *ws) {
|
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);
|
futex_wait(&ws->futex, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user