comparison src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.inline.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 9d7a8ab3736b
children 95f6641e38e0
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONMANAGER_INLINE_HPP
26 #define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONMANAGER_INLINE_HPP
27
28 #include "gc_implementation/parallelScavenge/psPromotionManager.hpp"
29 #include "gc_implementation/parallelScavenge/psScavenge.hpp"
24 30
25 inline PSPromotionManager* PSPromotionManager::manager_array(int index) { 31 inline PSPromotionManager* PSPromotionManager::manager_array(int index) {
26 assert(_manager_array != NULL, "access of NULL manager_array"); 32 assert(_manager_array != NULL, "access of NULL manager_array");
27 assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access"); 33 assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access");
28 return _manager_array[index]; 34 return _manager_array[index];
75 if (is_oop_masked(p)) { 81 if (is_oop_masked(p)) {
76 ++_masked_steals; 82 ++_masked_steals;
77 } 83 }
78 } 84 }
79 #endif // TASKQUEUE_STATS 85 #endif // TASKQUEUE_STATS
86
87 #endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSPROMOTIONMANAGER_INLINE_HPP