# HG changeset patch # User Christian Haeubl # Date 1373385288 -7200 # Node ID d59e7f94f28de9cf5f3c3a95c1e19d7a0f5f1ba7 # Parent e7d07c9bb7798ac1fcc46a3f24beef16f5a174e5 Increased priority for compiler threads. diff -r e7d07c9bb779 -r d59e7f94f28d graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerThread.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerThread.java Tue Jul 09 17:53:58 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerThread.java Tue Jul 09 17:54:48 2013 +0200 @@ -45,6 +45,7 @@ private CompilerThread(Runnable r) { super(r); this.setName("GraalCompilerThread-" + this.getId()); + this.setPriority(MAX_PRIORITY); this.setDaemon(true); }