Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2220950 | 8 | Stefan Karlsson | P2 | Closed | Fixed | b25 |
JDK-2220850 | 7u4 | Stefan Karlsson | P2 | Closed | Fixed | b11 |
If we run the remarking phase in the VM thread we'll crash if the reference processor is setup to use multi-threaded discovery.
We crash because as_Worker_thread() returns NULL in get_discovered_list():
if (_discovery_is_mt) {
// During a multi-threaded discovery phase,
// each thread saves to its "own" list.
Thread* thr = Thread::current();
id = thr->as_Worker_thread()->id();
} else {
// single-threaded discovery, we save in round-robin
// fashion to each of the lists.
if (_processing_is_mt) {
id = next_id();
}
}
We crash because as_Worker_thread() returns NULL in get_discovered_list():
if (_discovery_is_mt) {
// During a multi-threaded discovery phase,
// each thread saves to its "own" list.
Thread* thr = Thread::current();
id = thr->as_Worker_thread()->id();
} else {
// single-threaded discovery, we save in round-robin
// fashion to each of the lists.
if (_processing_is_mt) {
id = next_id();
}
}
- backported by
-
JDK-2220850 Crash in reference processing when doing single-threaded remarking
-
- Closed
-
-
JDK-2220950 Crash in reference processing when doing single-threaded remarking
-
- Closed
-