hotspot/src/share/vm/runtime/arguments.hpp
changeset 29697 92501504191b
parent 29696 01571dfab5be
child 30201 cfe623bb3f9c
equal deleted inserted replaced
29696:01571dfab5be 29697:92501504191b
   528 
   528 
   529   // -Xprof
   529   // -Xprof
   530   static bool has_profile()                 { return _has_profile; }
   530   static bool has_profile()                 { return _has_profile; }
   531 
   531 
   532   // -Xms
   532   // -Xms
   533   static uintx min_heap_size()              { return _min_heap_size; }
   533   static size_t min_heap_size()             { return _min_heap_size; }
   534   static void  set_min_heap_size(uintx v)   { _min_heap_size = v;  }
   534   static void  set_min_heap_size(size_t v)  { _min_heap_size = v;  }
   535 
   535 
   536   // Returns the original values of -XX:MinHeapFreeRatio and -XX:MaxHeapFreeRatio
   536   // Returns the original values of -XX:MinHeapFreeRatio and -XX:MaxHeapFreeRatio
   537   static uintx min_heap_free_ratio()        { return _min_heap_free_ratio; }
   537   static uintx min_heap_free_ratio()        { return _min_heap_free_ratio; }
   538   static uintx max_heap_free_ratio()        { return _max_heap_free_ratio; }
   538   static uintx max_heap_free_ratio()        { return _max_heap_free_ratio; }
   539 
   539