-
Bug
-
Resolution: Fixed
-
P2
-
9, 10
-
b163
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8178202 | 10 | Jamsheed C M | P2 | Resolved | Fixed | b04 |
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
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
- backported by
-
JDK-8178202 Do not use FLAG_SET_ERGO to update MaxRAM for emulated client
-
- Resolved
-
- relates to
-
JDK-8166002 Emulate client build on platforms with reduced virtual address space
-
- Closed
-