mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
6928081: G1: rename parameters common with CMS
Rename marking stack sizing flags to be common between G1 and CMS Reviewed-by: ysr, tonyp
This commit is contained in:
parent
77b2dfce1d
commit
f254745228
9 changed files with 108 additions and 34 deletions
|
@ -343,6 +343,12 @@ class Arguments : AllStatic {
|
|||
static ArgsRange check_memory_size(julong size, julong min_size);
|
||||
static ArgsRange parse_memory_size(const char* s, julong* long_arg,
|
||||
julong min_size);
|
||||
// Parse a string for a unsigned integer. Returns true if value
|
||||
// is an unsigned integer greater than or equal to the minimum
|
||||
// parameter passed and returns the value in uintx_arg. Returns
|
||||
// false otherwise, with uintx_arg undefined.
|
||||
static bool parse_uintx(const char* value, uintx* uintx_arg,
|
||||
uintx min_size);
|
||||
|
||||
// methods to build strings from individual args
|
||||
static void build_jvm_args(const char* arg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue