RFR: 8253026: Remove dummy call to gc alot from VM Thread

Robbin Ehn rehn at openjdk.java.net
Fri Sep 11 07:10:33 UTC 2020


On Fri, 11 Sep 2020 02:30:06 GMT, David Holmes <dholmes at openjdk.org> wrote:

>> 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.
>
> Marked as reviewed by dholmes (Reviewer).

Thanks @coleenp and @dholmes-ora.
Integrating as it is pretty trivial and have two reviews.

-------------

PR: https://git.openjdk.java.net/jdk/pull/113


More information about the hotspot-runtime-dev mailing list