소스 검색

torturethread: sleep a bit in SubThreadFunc to avoid starvation

testtorture, built by MinGW from msys2, got blocked indefinitely.
Anonymous Maarten 2 년 전
부모
커밋
115460a930
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/torturethread.c

+ 1 - 1
test/torturethread.c

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