X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Flttng.c;h=e760bdbe1311b996ee3eb698adbf79c5e8754e80;hp=17ab16dc660a94cb27784af3fa6436bffa4765a7;hb=4624dad0d79b63be45c5c6d7eb2920ba09746f06;hpb=a3bc3918a3e9f219cc54adcc41dd6b37381b30ff diff --git a/src/bin/lttng/lttng.c b/src/bin/lttng/lttng.c index 17ab16dc6..e760bdbe1 100644 --- a/src/bin/lttng/lttng.c +++ b/src/bin/lttng/lttng.c @@ -1,18 +1,8 @@ /* - * Copyright (c) 2011 David Goulet + * Copyright (C) 2011 David Goulet * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License, version 2 only, - * as published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #define _LGPL_SOURCE @@ -43,7 +33,7 @@ NULL ; /* Variables */ -static char *progname; +static const char *progname; int opt_no_sessiond; char *opt_sessiond_path; @@ -75,7 +65,9 @@ static struct option long_options[] = { /* First level command */ static struct cmd_struct commands[] = { { "add-context", cmd_add_context}, + { "add-trigger", cmd_add_trigger}, { "create", cmd_create}, + { "clear", cmd_clear}, { "destroy", cmd_destroy}, { "disable-channel", cmd_disable_channels}, { "disable-event", cmd_disable_events}, @@ -280,6 +272,7 @@ static void show_basic_help(void) puts(""); puts("Tracing sessions:"); puts(" create " CONFIG_CMD_DESCR_CREATE); + puts(" clear " CONFIG_CMD_DESCR_CLEAR); puts(" destroy " CONFIG_CMD_DESCR_DESTROY); puts(" load " CONFIG_CMD_DESCR_LOAD); puts(" regenerate " CONFIG_CMD_DESCR_REGENERATE);