Skip to content

Commit

Permalink
Enable background JIT again.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Oct 22, 2014
1 parent 9041fe8 commit 9efe5ea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/src/main/java/org/jruby/util/cli/Options.java
Expand Up @@ -112,8 +112,7 @@ public class Options {
public static final Option<String> JIT_EXCLUDE = string(JIT, "jit.exclude", new String[]{"ClsOrMod","ClsOrMod::method_name","-::method_name"}, "", "Exclude methods from JIT. Comma delimited.");
public static final Option<String> JIT_CODECACHE = string(JIT, "jit.codeCache", new String[]{"dir"}, "Save jitted methods to <dir> as they're compiled, for future runs.");
public static final Option<Boolean> JIT_DEBUG = bool(JIT, "jit.debug", false, "Log loading of JITed bytecode.");
// CON FIXME: IR is not thread-safe yet, so turn off background JIT for now
public static final Option<Boolean> JIT_BACKGROUND = bool(JIT, "jit.background", false, "Run the JIT compiler in a background thread.");
public static final Option<Boolean> JIT_BACKGROUND = bool(JIT, "jit.background", true, "Run the JIT compiler in a background thread.");

public static final Option<Boolean> IR_DEBUG = bool(IR, "ir.debug", false, "Debug generation of JRuby IR.");
public static final Option<Boolean> IR_PROFILE = bool(IR, "ir.profile", false, "[EXPT]: Profile IR code during interpretation.");
Expand Down

0 comments on commit 9efe5ea

Please sign in to comment.