Relates :
|
setting MaxRAM FLAG_SET_ERGO affects Arguments::set_heap_size inappropriately, void Arguments::set_heap_size() { julong phys_mem = FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM) : (julong)MaxRAM; so, do not use FLAG_SET_ERGO to update MaxRAM for emulated client
|