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