SoW-2020-0003: Trace Hit Counters
[lttng-tools.git] / src / bin / lttng / lttng.c
index 36a4fbed99e1b5234e986b3a7c10aa85ef00d54e..61ed247738ac2adfe748fe88087f54dfe54fc86b 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (c)  2011 David Goulet <david.goulet@polymtl.ca>
+ * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
  *
- * 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,6 +65,7 @@ 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},
@@ -82,11 +73,16 @@ static struct cmd_struct commands[] =  {
        { "disable-event", cmd_disable_events},
        { "enable-channel", cmd_enable_channels},
        { "enable-event", cmd_enable_events},
+       { "add-map", cmd_add_map},
+       { "enable-map", cmd_enable_map},
+       { "disable-map", cmd_disable_map},
        { "help", NULL},
        { "list", cmd_list},
+       { "list-triggers", cmd_list_triggers},
        { "load", cmd_load},
        { "metadata", cmd_metadata},
        { "regenerate", cmd_regenerate},
+       { "remove-trigger", cmd_remove_trigger},
        { "rotate", cmd_rotate},
        { "enable-rotation", cmd_enable_rotation},
        { "disable-rotation", cmd_disable_rotation},
@@ -100,6 +96,7 @@ static struct cmd_struct commands[] =  {
        { "untrack", cmd_untrack},
        { "version", cmd_version},
        { "view", cmd_view},
+       { "view-map", cmd_view_map},
        { NULL, NULL}   /* Array closure */
 };
 
@@ -293,6 +290,10 @@ static void show_basic_help(void)
        puts("  disable-channel   " CONFIG_CMD_DESCR_DISABLE_CHANNEL);
        puts("  enable-channel    " CONFIG_CMD_DESCR_ENABLE_CHANNEL);
        puts("");
+       puts("Maps:");
+       puts("  add-map           " CONFIG_CMD_DESCR_ADD_MAP);
+       puts("  remove-map        " CONFIG_CMD_DESCR_ADD_MAP);
+       puts("");
        puts("Event rules:");
        puts("  disable-event     " CONFIG_CMD_DESCR_DISABLE_EVENT);
        puts("  enable-event      " CONFIG_CMD_DESCR_ENABLE_EVENT);
This page took 0.026753 seconds and 5 git commands to generate.