X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fstatus.c;h=23e8c03d390bc8fa2007cd82e7e271ec5bcda810;hp=b3555c9840cba2f2cba2463bcfc448f31d2d93f9;hb=0de2479d5f5a287d31c69e34ea5202a69019f224;hpb=54a0adbf3cf5cd691d57b9ebaef083cad30273e1 diff --git a/src/bin/lttng/commands/status.c b/src/bin/lttng/commands/status.c index b3555c984..23e8c03d3 100644 --- a/src/bin/lttng/commands/status.c +++ b/src/bin/lttng/commands/status.c @@ -1,21 +1,10 @@ /* - * Copyright (C) 2015 - Philippe Proulx + * Copyright (C) 2015 Philippe Proulx * - * 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 _GNU_SOURCE #define _LGPL_SOURCE #include #include @@ -29,6 +18,12 @@ #include "../utils.h" #include +#ifdef LTTNG_EMBED_HELP +static const char help_msg[] = +#include +; +#endif + enum { OPT_HELP = 1, OPT_LIST_OPTIONS, @@ -41,15 +36,6 @@ static struct poptOption long_options[] = { {0, 0, 0, 0, 0, 0, 0} }; -static void usage(FILE *ofp) -{ - fprintf(ofp, "Usage: lttng status [options]\n"); - fprintf(ofp, "\n"); - fprintf(ofp, "Options:\n"); - fprintf(ofp, " -h, --help Show this help\n"); - fprintf(ofp, " --list-options List options\n"); -} - static int status(void) { const char *argv[2]; @@ -84,13 +70,12 @@ int cmd_status(int argc, const char **argv) while ((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { case OPT_HELP: - usage(stdout); + SHOW_HELP(); goto end; case OPT_LIST_OPTIONS: list_cmd_options(stdout, long_options); goto end; default: - usage(stderr); ret = CMD_UNDEFINED; goto end; } @@ -98,7 +83,6 @@ int cmd_status(int argc, const char **argv) if (poptPeekArg(pc) != NULL) { ERR("This command does not accept positional arguments.\n"); - usage(stderr); ret = CMD_UNDEFINED; goto end; }