From 8ed0bf1041490e214247a7ad8cb013f0f36c7f2c Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 28 Sep 2017 09:36:22 -0400 Subject: [PATCH] cli: --stream-intersection is not an implicit src.ctf.fs component's option MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- cli/babeltrace-cfg-cli-args.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/babeltrace-cfg-cli-args.c b/cli/babeltrace-cfg-cli-args.c index 6ff99871..60e5605d 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"); -- 2.34.1