Explorar el Código

torturethread: sleep a bit in SubThreadFunc to avoid starvation

testtorture, built by MinGW from msys2, got blocked indefinitely.
Anonymous Maarten hace 3 años
padre
commit
115460a930
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/torturethread.c

+ 1 - 1
test/torturethread.c

@@ -35,7 +35,7 @@ static int SDLCALL
 SubThreadFunc(void *data)
 SubThreadFunc(void *data)
 {
 {
     while (!*(int volatile *)data) {
     while (!*(int volatile *)data) {
-        ; /* SDL_Delay(10); */ /* do nothing */
+        SDL_Delay(10);
     }
     }
     return 0;
     return 0;
 }
 }