Description
GC Alot can only be performed by a Java Thread:
void InterfaceSupport::gc_alot() {
Thread *thread = Thread::current();
if (!thread->is_Java_thread()) return; // Avoid concurrent calls
Lets remove the dummy call from the VM thread.
void InterfaceSupport::gc_alot() {
Thread *thread = Thread::current();
if (!thread->is_Java_thread()) return; // Avoid concurrent calls
Lets remove the dummy call from the VM thread.