X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fdestroy.c;h=77acb180f8b8d91ee44bfd6249f86c4c8cc696b1;hp=e0bafc475b6451cd4e3d0c8cd6b79583609936f4;hb=3e3665b89947ebdd812bcfaca1090d22b34d5778;hpb=01f55be4d700e2241e96f50794d7f887024744c2 diff --git a/src/bin/lttng/commands/destroy.c b/src/bin/lttng/commands/destroy.c index e0bafc475..77acb180f 100644 --- a/src/bin/lttng/commands/destroy.c +++ b/src/bin/lttng/commands/destroy.c @@ -35,6 +35,12 @@ static char *opt_session_name; static int opt_destroy_all; static int opt_no_wait; +#ifdef LTTNG_EMBED_HELP +static const char help_msg[] = +#include +; +#endif + /* Mi writer */ static struct mi_writer *writer; @@ -107,7 +113,7 @@ static int destroy_session(struct lttng_session *session) print_session_stats(session->name); } - ret = lttng_destroy_session_no_wait(session->name); + ret = lttng_destroy_session(session->name); if (ret < 0) { goto error; } @@ -168,6 +174,7 @@ int cmd_destroy(int argc, const char **argv) int ret = CMD_SUCCESS , i, command_ret = CMD_SUCCESS, success = 1; static poptContext pc; char *session_name = NULL; + const char *leftover = NULL; struct lttng_session *sessions; int count; @@ -226,7 +233,8 @@ int cmd_destroy(int argc, const char **argv) /* Recuperate all sessions for further operation */ count = lttng_list_sessions(&sessions); if (count < 0) { - command_ret = count; + ERR("%s", lttng_strerror(count)); + command_ret = CMD_ERROR; success = 0; goto mi_closing; } @@ -273,6 +281,14 @@ int cmd_destroy(int argc, const char **argv) } } + leftover = poptGetArg(pc); + if (leftover) { + ERR("Unknown argument: %s", leftover); + ret = CMD_ERROR; + success = 0; + goto mi_closing; + } + mi_closing: /* Mi closing */ if (lttng_opt_mi) {