hotspot/src/share/vm/runtime/interfaceSupport.cpp
void InterfaceSupport::zombieAll() {
if (is_init_completed() && zombieAllCounter > ZombieALotInterval) {
zombieAllCounter = 0;
VM_ZombieAll op;
VMThread::execute(&op);
} else {
zombieAllCounter++;
}
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.