소스 검색

[java] Make java Threads follow how cpp/neko implement them, and let them be killed as the program exits

Cauê Waneck 11 년 전
부모
커밋
df45237db3
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      std/java/vm/Thread.hx

+ 1 - 0
std/java/vm/Thread.hx

@@ -85,5 +85,6 @@ private class HaxeThread extends java.lang.Thread
 		super();
 		threadObject = hxThread;
 		runFunction = run;
+		setDaemon(true);
 	}
 }