< prev index next >
src/hotspot/share/gc/g1/g1_globals.hpp
Print this page
rev 47563 : 8186502: Assert when range testing G1RefProcDrainInterval on 64-bit systems
rev 47564 : Update copyright year
@@ -1,7 +1,7 @@
/*
- * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
@@ -76,14 +76,14 @@
product(double, G1ConcMarkStepDurationMillis, 10.0, \
"Target duration of individual concurrent marking steps " \
"in milliseconds.") \
range(1.0, DBL_MAX) \
\
- product(intx, G1RefProcDrainInterval, 10, \
+ product(int, G1RefProcDrainInterval, 10, \
"The number of discovered reference objects to process before " \
"draining concurrent marking work queues.") \
- range(1, max_intx) \
+ range(1, INT_MAX) \
\
experimental(double, G1LastPLABAverageOccupancy, 50.0, \
"The expected average occupancy of the last PLAB in " \
"percent.") \
range(0.001, 100.0) \
< prev index next >