src/share/vm/oops/objArrayKlass.inline.hpp

Print this page

        

*** 20,29 **** --- 20,38 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP + #define SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP + + #include "oops/objArrayKlass.hpp" + #ifndef SERIALGC + #include "gc_implementation/parallelScavenge/psCompactionManager.inline.hpp" + #include "gc_implementation/parallelScavenge/psParallelCompact.hpp" + #endif + void objArrayKlass::oop_follow_contents(oop obj, int index) { if (UseCompressedOops) { objarray_follow_contents<narrowOop>(obj, index); } else { objarray_follow_contents<oop>(obj, index);
*** 85,89 **** --- 94,100 ---- if (end_index < len) { cm->push_objarray(a, end_index); // Push the continuation. } } #endif // #ifndef SERIALGC + + #endif // SHARE_VM_OOPS_OBJARRAYKLASS_INLINE_HPP