src/share/vm/runtime/arguments.hpp

Print this page

        

@@ -260,11 +260,10 @@
   // was this VM created by the gamma launcher
   static bool   _created_by_gamma_launcher;
 
   // Option flags
   static bool   _has_profile;
-  static bool   _has_alloc_profile;
   static const char*  _gc_log_filename;
   static uintx  _min_heap_size;
 
   // -Xrun arguments
   static AgentLibraryList _libraryList;

@@ -460,13 +459,12 @@
   static int sun_java_launcher_pid()        { return _sun_java_launcher_pid; }
 
   // -Xloggc:<file>, if not specified will be NULL
   static const char* gc_log_filename()      { return _gc_log_filename; }
 
-  // -Xprof/-Xaprof
+  // -Xprof
   static bool has_profile()                 { return _has_profile; }
-  static bool has_alloc_profile()           { return _has_alloc_profile; }
 
   // -Xms, -Xmx
   static uintx min_heap_size()              { return _min_heap_size; }
   static void  set_min_heap_size(uintx v)   { _min_heap_size = v;  }