< prev index next >

src/share/vm/gc/shared/generation.hpp

Print this page
rev 8362 : [mq]: hotspot

@@ -20,20 +20,20 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  *
  */
 
-#ifndef SHARE_VM_MEMORY_GENERATION_HPP
-#define SHARE_VM_MEMORY_GENERATION_HPP
+#ifndef SHARE_VM_GC_SHARED_GENERATION_HPP
+#define SHARE_VM_GC_SHARED_GENERATION_HPP
 
-#include "gc_implementation/shared/collectorCounters.hpp"
+#include "gc/shared/collectorCounters.hpp"
+#include "gc/shared/referenceProcessor.hpp"
+#include "gc/shared/watermark.hpp"
 #include "memory/allocation.hpp"
 #include "memory/memRegion.hpp"
-#include "memory/referenceProcessor.hpp"
 #include "memory/universe.hpp"
 #include "memory/virtualspace.hpp"
-#include "memory/watermark.hpp"
 #include "runtime/mutex.hpp"
 #include "runtime/perfData.hpp"
 
 // A Generation models a heap area for similarly-aged objects.
 // It will contain one ore more spaces holding the actual objects.

@@ -582,6 +582,6 @@
   // Performance Counter support
   virtual void update_counters() = 0;
   virtual CollectorCounters* counters() { return _gc_counters; }
 };
 
-#endif // SHARE_VM_MEMORY_GENERATION_HPP
+#endif // SHARE_VM_GC_SHARED_GENERATION_HPP
< prev index next >