xref: /llvm-project/lldb/source/Plugins/TraceExporter/ctf/TraceExporterCTFOptions.td (revision d52ba48821301c33650b97cd9f262615fcc0fdc1)
1include "../../../../source/Commands/OptionsBase.td"
2
3let Command = "thread trace export ctf" in {
4  def thread_trace_export_ctf: Option<"tid", "t">,
5    Group<1>,
6    Arg<"ThreadIndex">,
7    Desc<"Export the trace for the specified thread index. Otherwise, the "
8         "currently selected thread will be used.">;
9  def thread_trace_export_file: Option<"file", "f">, Required,
10    Group<1>,
11    Arg<"Filename">,
12    Desc<"Path of the file to export the trace data">;
13}
14