Selaa lähdekoodia

`if` -> `while` in `wait_signal_until_available` to check for spurious wake-ups

gingerBill 1 vuosi sitten
vanhempi
commit
d7b7804215
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/threading.cpp

+ 1 - 1
src/threading.cpp

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