From 7423269e36ecbc172675679dbc795ff12947c441 Mon Sep 17 00:00:00 2001 From: wuzhaomin Date: Mon, 9 Sep 2024 18:07:21 +0800 Subject: [PATCH] Add the get_hotspot_cmdline_parser function to the tool_cmd.py file --- common/tool_cmd.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/tool_cmd.py b/common/tool_cmd.py index b58bde1..9866f6d 100644 --- a/common/tool_cmd.py +++ b/common/tool_cmd.py @@ -80,6 +80,12 @@ class ToolCmd: return ival + def get_hotspot_cmdline_parser(self, args): + perf_args = {} + offcpu_args = {} + return perf_args, offcpu_args + # end add for perf/offcpu command line parser check + def args_help(self): #共享可选参数wpath ipath opath parent_parser = argparse.ArgumentParser(add_help=False) -- Gitee