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