From: Philippe Proulx Date: Thu, 28 Sep 2017 13:36:22 +0000 (-0400) Subject: cli: --stream-intersection is not an implicit src.ctf.fs component's option X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=8ed0bf1041490e214247a7ad8cb013f0f36c7f2c;p=deliverable%2Fbabeltrace.git cli: --stream-intersection is not an implicit src.ctf.fs component's option You can use the --stream-intersection option with any source component class which supports the `trace-info` query, not just with src.ctf.fs. Also, using --stream-intersection does not imply a src.ctf.fs component like --clock-class-offset-s does for example. Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/cli/babeltrace-cfg-cli-args.c b/cli/babeltrace-cfg-cli-args.c index 6ff99871c..60e5605df 100644 --- a/cli/babeltrace-cfg-cli-args.c +++ b/cli/babeltrace-cfg-cli-args.c @@ -2760,6 +2760,8 @@ void print_convert_usage(FILE *fp) fprintf(fp, " --run-args-0 Print the equivalent arguments for the\n"); fprintf(fp, " `run` command to the standard output,\n"); fprintf(fp, " formatted for `xargs -0`, and quit\n"); + fprintf(fp, " --stream-intersection Only process events when all streams\n"); + fprintf(fp, " are active\n"); fprintf(fp, " -u, --url=URL Set the `url` string parameter of the\n"); fprintf(fp, " current component to URL\n"); fprintf(fp, " -h, --help Show this help and quit\n"); @@ -2768,8 +2770,6 @@ void print_convert_usage(FILE *fp) fprintf(fp, "\n"); fprintf(fp, " --clock-offset=SEC Set clock offset to SEC seconds\n"); fprintf(fp, " --clock-offset-ns=NS Set clock offset to NS ns\n"); - fprintf(fp, " --stream-intersection Only process events when all streams\n"); - fprintf(fp, " are active\n"); fprintf(fp, "\n"); fprintf(fp, "Implicit `sink.text.pretty` component options:\n"); fprintf(fp, "\n");