< prev index next >

src/hotspot/share/gc/z/zPhysicalMemory.hpp

Print this page

        

@@ -25,11 +25,11 @@
 #define SHARE_GC_Z_ZPHYSICALMEMORY_HPP
 
 #include "memory/allocation.hpp"
 #include OS_CPU_HEADER(zPhysicalMemoryBacking)
 
-class ZPhysicalMemorySegment VALUE_OBJ_CLASS_SPEC {
+class ZPhysicalMemorySegment {
 private:
   uintptr_t _start;
   uintptr_t _end;
 
 public:

@@ -41,11 +41,11 @@
 
   void expand(size_t size);
   ZPhysicalMemorySegment split(size_t size);
 };
 
-class ZPhysicalMemory VALUE_OBJ_CLASS_SPEC {
+class ZPhysicalMemory {
 private:
   size_t                  _nsegments;
   ZPhysicalMemorySegment* _segments;
 
 public:

@@ -62,11 +62,11 @@
 
   ZPhysicalMemory split(size_t size);
   void clear();
 };
 
-class ZPhysicalMemoryManager VALUE_OBJ_CLASS_SPEC {
+class ZPhysicalMemoryManager {
   friend class VMStructs;
 
 private:
   ZPhysicalMemoryBacking _backing;
   const size_t           _max_capacity;
< prev index next >