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