comparison src/share/vm/runtime/globals.hpp @ 4728:441e946dc1af

7121618: Change type of number of GC workers to unsigned int. Summary: Change variables representing the number of GC workers to uint from int and size_t. Change the parameter in work(int i) to work(uint worker_id). Reviewed-by: brutisso, tonyp
author jmasa
date Wed, 14 Dec 2011 13:34:57 -0800
parents 81f7362f7bed
children 7faca6dfa2ed
comparison
equal deleted inserted replaced
4727:67fdcb391461 4728:441e946dc1af
1549 "we simulate overflow; a smaller number increases frequency") \ 1549 "we simulate overflow; a smaller number increases frequency") \
1550 \ 1550 \
1551 product(uintx, ParGCDesiredObjsFromOverflowList, 20, \ 1551 product(uintx, ParGCDesiredObjsFromOverflowList, 20, \
1552 "The desired number of objects to claim from the overflow list") \ 1552 "The desired number of objects to claim from the overflow list") \
1553 \ 1553 \
1554 diagnostic(intx, ParGCStridesPerThread, 2, \ 1554 diagnostic(uintx, ParGCStridesPerThread, 2, \
1555 "The number of strides per worker thread that we divide up the " \ 1555 "The number of strides per worker thread that we divide up the " \
1556 "card table scanning work into") \ 1556 "card table scanning work into") \
1557 \ 1557 \
1558 diagnostic(intx, ParGCCardsPerStrideChunk, 256, \ 1558 diagnostic(intx, ParGCCardsPerStrideChunk, 256, \
1559 "The number of cards in each chunk of the parallel chunks used " \ 1559 "The number of cards in each chunk of the parallel chunks used " \