1fe6060f1SDimitry Andricinclude "../../../../source/Commands/OptionsBase.td" 2fe6060f1SDimitry Andric 3fe6060f1SDimitry Andriclet Command = "thread trace export ctf" in { 4fe6060f1SDimitry Andric def thread_trace_export_ctf: Option<"tid", "t">, 5fe6060f1SDimitry Andric Group<1>, 6fe6060f1SDimitry Andric Arg<"ThreadIndex">, 7fe6060f1SDimitry Andric Desc<"Export the trace for the specified thread index. Otherwise, the " 8fe6060f1SDimitry Andric "currently selected thread will be used.">; 9*349cc55cSDimitry Andric def thread_trace_export_file: Option<"file", "f">, Required, 10*349cc55cSDimitry Andric Group<1>, 11*349cc55cSDimitry Andric Arg<"Filename">, 12*349cc55cSDimitry Andric Desc<"Path of the file to export the trace data">; 13fe6060f1SDimitry Andric} 14