X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=lttng%2Flttng.c;h=e4578c70a3a60ad8eb8a2a2cdf510a5458e5e82b;hp=5f0699119cc89614644a1cf1bc5ef176d4eeb3f7;hb=d36b858358a8ef4e00de843379d670925f9c23b6;hpb=beb8c75afd91bc32f2e7a9c124c9a21ecffd1486 diff --git a/lttng/lttng.c b/lttng/lttng.c index 5f0699119..e4578c70a 100644 --- a/lttng/lttng.c +++ b/lttng/lttng.c @@ -63,6 +63,8 @@ static struct cmd_struct commands[] = { { "start", cmd_start}, { "stop", cmd_stop}, { "enable-event", cmd_enable_events}, + { "disable-event", cmd_disable_events}, + { "enable-channel", cmd_enable_channels}, { NULL, NULL} /* Array closure */ }; @@ -84,6 +86,7 @@ static void usage(FILE *ofp) fprintf(ofp, " create Create tracing session\n"); fprintf(ofp, " destroy Teardown tracing session\n"); fprintf(ofp, " enable-event Enable tracing event\n"); + fprintf(ofp, " enable-channel Enable tracing channel\n"); fprintf(ofp, " disable-event Disable tracing event\n"); fprintf(ofp, " list List possible tracing options\n"); fprintf(ofp, " start Start tracing\n");