hotspot/src/os/aix/vm/os_aix.cpp
changeset 24430 47a764232b9c
parent 23865 ba4aeedb2a9f
child 24431 3ffc38ad9083
equal deleted inserted replaced
24428:61f8aa59b263 24430:47a764232b9c
  1868 //
  1868 //
  1869 // Therefore we need to keep track of the allocated memory segments and their
  1869 // Therefore we need to keep track of the allocated memory segments and their
  1870 // properties.
  1870 // properties.
  1871 
  1871 
  1872 // ShmBkBlock: base class for all blocks in the shared memory bookkeeping
  1872 // ShmBkBlock: base class for all blocks in the shared memory bookkeeping
  1873 class ShmBkBlock {
  1873 class ShmBkBlock : public CHeapObj<mtInternal> {
  1874 
  1874 
  1875   ShmBkBlock* _next;
  1875   ShmBkBlock* _next;
  1876 
  1876 
  1877 protected:
  1877 protected:
  1878 
  1878