-
Bug
-
Resolution: Fixed
-
P3
-
8u60, 9
-
b56
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8085628 | emb-9 | Sundararajan Athijegannathan | P3 | Resolved | Fixed | team |
JDK-8087047 | 8u65 | Sundararajan Athijegannathan | P3 | Resolved | Fixed | b01 |
JDK-8075614 | 8u60 | Sundararajan Athijegannathan | P3 | Resolved | Fixed | b10 |
JDK-8138511 | emb-8u65 | Unassigned | P3 | Resolved | Fixed | b01 |
JDK-8079047 | emb-8u60 | Sundararajan Athijegannathan | P3 | Resolved | Fixed | team |
var Thread = java.lang.Thread;
var thread = new Thread(function() {
while(true) {
print("hello");
}
});
thread.daemon = false;
thread.start();
Expected output:
"hello" being printed continuously (infinite loop)
Output seen:
jjs shell exits immediately
var thread = new Thread(function() {
while(true) {
print("hello");
}
});
thread.daemon = false;
thread.start();
Expected output:
"hello" being printed continuously (infinite loop)
Output seen:
jjs shell exits immediately
- backported by
-
JDK-8075614 jjs exits even when non-daemon threads are still active
-
- Resolved
-
-
JDK-8079047 jjs exits even when non-daemon threads are still active
-
- Resolved
-
-
JDK-8085628 jjs exits even when non-daemon threads are still active
-
- Resolved
-
-
JDK-8087047 jjs exits even when non-daemon threads are still active
-
- Resolved
-
-
JDK-8138511 jjs exits even when non-daemon threads are still active
-
- Resolved
-