src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.inline.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hsx-gc Cdiff src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.inline.hpp

src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.inline.hpp

Print this page

        

*** 30,40 **** #include "gc_implementation/parallelScavenge/psScavenge.hpp" inline PSPromotionManager* PSPromotionManager::manager_array(int index) { assert(_manager_array != NULL, "access of NULL manager_array"); assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access"); ! return _manager_array[index]; } template <class T> inline void PSPromotionManager::claim_or_forward_internal_depth(T* p) { if (p != NULL) { // XXX: error if p != NULL here --- 30,40 ---- #include "gc_implementation/parallelScavenge/psScavenge.hpp" inline PSPromotionManager* PSPromotionManager::manager_array(int index) { assert(_manager_array != NULL, "access of NULL manager_array"); assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access"); ! return &_manager_array[index]; } template <class T> inline void PSPromotionManager::claim_or_forward_internal_depth(T* p) { if (p != NULL) { // XXX: error if p != NULL here
src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.inline.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File