[snow-cvs] r61 - trunk/src/java/snow

Alessio Stalla astalla at common-lisp.net
Mon Feb 22 21:28:30 UTC 2010


Author: astalla
Date: Mon Feb 22 16:28:29 2010
New Revision: 61

Log:
Removed wrong thread.setDaemon(true) to the interpreter thread when started in
non-GUI-REPL mode.


Modified:
   trunk/src/java/snow/Snow.java

Modified: trunk/src/java/snow/Snow.java
==============================================================================
--- trunk/src/java/snow/Snow.java	(original)
+++ trunk/src/java/snow/Snow.java	Mon Feb 22 16:28:29 2010
@@ -339,7 +339,6 @@
 			}
 		    };
 		Thread t = new Thread(null, r, "interpreter", 4194304L);
-		t.setDaemon(true);
 		t.start();
 	    }
 	} catch (Exception e) {




More information about the snow-cvs mailing list