xref: /freebsd-src/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/TraceExporterCTFOptions.td (revision 349cc55c9796c4596a5b9904cd3281af295f878f)
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