< prev index next > src/hotspot/share/services/diagnosticCommand.hpp
Print this page
virtual void execute(DCmdSource source, TRAPS);
};
class ThreadDumpToFileDCmd : public DCmdWithParser {
private:
- void dumpToFile(Symbol* name, Symbol* signature, const char* path, bool overwrite, TRAPS);
+ void dumpToFile(Symbol* name, Symbol* signature, const char* path, bool overwrite, bool minify, TRAPS);
protected:
- DCmdArgument<bool> _overwrite;
DCmdArgument<char*> _format;
+ DCmdArgument<bool> _minify;
DCmdArgument<char*> _filepath;
+ DCmdArgument<bool> _overwrite;
public:
- static int num_arguments() { return 3; }
+ static int num_arguments() { return 4; }
ThreadDumpToFileDCmd(outputStream *output, bool heap);
static const char *name() {
return "Thread.dump_to_file";
}
static const char *description() {
< prev index next >