src/share/vm/services/diagnosticCommand.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot-npg Cdiff src/share/vm/services/diagnosticCommand.hpp

src/share/vm/services/diagnosticCommand.hpp

Print this page

        

*** 153,163 **** } static int num_arguments() { return 0; } virtual void execute(TRAPS); }; ! #ifndef SERVICES_KERNEL // Heap dumping not supported // See also: dump_heap in attachListener.cpp class HeapDumpDCmd : public DCmdWithParser { protected: DCmdArgument<char*> _filename; DCmdArgument<bool> _all; --- 153,163 ---- } static int num_arguments() { return 0; } virtual void execute(TRAPS); }; ! #if INCLUDE_SERVICES // Heap dumping supported // See also: dump_heap in attachListener.cpp class HeapDumpDCmd : public DCmdWithParser { protected: DCmdArgument<char*> _filename; DCmdArgument<bool> _all;
*** 174,184 **** "Request a full GC unless the '-all' option is specified."; } static int num_arguments(); virtual void execute(TRAPS); }; ! #endif // SERVICES_KERNEL // See also: inspeactheap in attachListener.cpp class ClassHistogramDCmd : public DCmdWithParser { protected: DCmdArgument<bool> _all; --- 174,184 ---- "Request a full GC unless the '-all' option is specified."; } static int num_arguments(); virtual void execute(TRAPS); }; ! #endif // INCLUDE_SERVICES // See also: inspeactheap in attachListener.cpp class ClassHistogramDCmd : public DCmdWithParser { protected: DCmdArgument<bool> _all;
src/share/vm/services/diagnosticCommand.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File