Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/main/java/org/jruby/RubyThread.java
Original file line number Diff line number Diff line change
@@ -1496,7 +1496,9 @@ public void enterSleep() {
}

public void exitSleep() {
status.set(Status.RUN);
if (status.get() != Status.ABORTING) {
status.set(Status.RUN);
}
}

@JRubyMethod(name = {"kill", "exit", "terminate"})

0 comments on commit d335c0c

Please sign in to comment.