src/share/vm/runtime/arguments.hpp

Print this page

        

*** 260,270 **** // 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; --- 260,269 ----
*** 460,472 **** 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 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; } --- 459,470 ---- 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 static bool has_profile() { return _has_profile; } // -Xms, -Xmx static uintx min_heap_size() { return _min_heap_size; } static void set_min_heap_size(uintx v) { _min_heap_size = v; }