8017483: G1 tests fail with native OOME on Solaris x86 after HeapBaseMinAddress has been increased

Set HeapBaseMinAddress as default rather than ergo

Reviewed-by: stefank, jmasa, kvn
This commit is contained in:
Bengt Rutisson 2013-06-27 09:59:59 +02:00
parent 604a75ff30
commit d3dfbb3cf2

View File

@ -1571,7 +1571,9 @@ void Arguments::set_heap_base_min_address() {
// By default HeapBaseMinAddress is 2G on all platforms except Solaris x86.
// G1 currently needs a lot of C-heap, so on Solaris we have to give G1
// some extra space for the C-heap compared to other collectors.
FLAG_SET_ERGO(uintx, HeapBaseMinAddress, 1*G);
// Use FLAG_SET_DEFAULT here rather than FLAG_SET_ERGO to make sure that
// code that checks for default values work correctly.
FLAG_SET_DEFAULT(HeapBaseMinAddress, 1*G);
}
}