< prev index next >

src/share/vm/runtime/globals.hpp

Print this page

        

@@ -1891,15 +1891,15 @@
   product(uintx, CMSScheduleRemarkEdenPenetration, 50,                      \
           "The Eden occupancy percentage (0-100) at which "                 \
           "to try and schedule remark pause")                               \
           range(0, 100)                                                     \
                                                                             \
-  product(uintx, CMSScheduleRemarkSamplingRatio, 5,                         \
+  product(uint, CMSScheduleRemarkSamplingRatio, 5,                          \
           "Start sampling eden top at least before young gen "              \
           "occupancy reaches 1/<ratio> of the size at which "               \
           "we plan to schedule remark")                                     \
-          range(1, max_uintx)                                               \
+          range(1, max_juint)                                               \
                                                                             \
   product(uintx, CMSSamplingGrain, 16*K,                                    \
           "The minimum distance between eden samples for CMS (see above)")  \
           range(ObjectAlignmentInBytes, max_uintx)                          \
           constraint(CMSSamplingGrainConstraintFunc,AfterMemoryInit)        \
< prev index next >