< prev index next >

src/hotspot/share/gc/shared/gc_globals.hpp

Print this page
rev 50850 : 8203030: Zero s390 31 bit size_t type conflicts in shared code
Summary: Cast to size_t or change to size_t foe compatibility with other archs.
Reviewed-by: Duke
Contributed-by: chrisphi

@@ -353,11 +353,11 @@
           "time out of hard spin")                                          \
                                                                             \
   experimental(uintx, WorkStealingSpinToYieldRatio, 10,                     \
           "Ratio of hard spins to calls to yield")                          \
                                                                             \
-  develop(uintx, ObjArrayMarkingStride, 2048,                               \
+  develop(size_t, ObjArrayMarkingStride, 2048,                              \
           "Number of object array elements to push onto the marking stack " \
           "before pushing a continuation entry")                            \
                                                                             \
   develop(bool, MetadataAllocationFailALot, false,                          \
           "Fail metadata allocations at intervals controlled by "           \
< prev index next >