< prev index next >

src/share/vm/gc/shared/plab.inline.hpp

Print this page
rev 8362 : 8079792: GC directory structure cleanup
Reviewed-by:

@@ -20,15 +20,15 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  *
  */
 
-#ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_PLAB_INLINE_HPP
-#define SHARE_VM_GC_IMPLEMENTATION_SHARED_PLAB_INLINE_HPP
+#ifndef SHARE_VM_GC_SHARED_PLAB_INLINE_HPP
+#define SHARE_VM_GC_SHARED_PLAB_INLINE_HPP
 
-#include "gc_implementation/shared/plab.hpp"
-#include "gc_interface/collectedHeap.inline.hpp"
+#include "gc/shared/collectedHeap.inline.hpp"
+#include "gc/shared/plab.hpp"
 
 HeapWord* PLAB::allocate_aligned(size_t word_sz, unsigned short alignment_in_bytes) {
 
   HeapWord* res = CollectedHeap::align_allocation_or_fail(_top, _end, alignment_in_bytes);
   if (res == NULL) {

@@ -39,6 +39,6 @@
   // can be used below.
   _top = res;
   return allocate(word_sz);
 }
 
-#endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_PLAB_INLINE_HPP
+#endif // SHARE_VM_GC_SHARED_PLAB_INLINE_HPP
< prev index next >