changeset 10673:d59e7f94f28d

Increased priority for compiler threads.
author Christian Haeubl <haeubl@ssw.jku.at>
date Tue, 09 Jul 2013 17:54:48 +0200
parents e7d07c9bb779
children 853a894e0d97
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerThread.java
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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);
     }