X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=lttng%2Flttng.c;h=b9c6b5a8e2d2a2163485407105e20ef119ccec16;hb=3bd1e0819b577ffcb44acd7c2f8e02ff09654b7b;hp=455b18c58108963ef725a35037418d3ffbf0d338;hpb=82a3637f639486c07ff937ab03e1e9532379d26a;p=lttng-tools.git diff --git a/lttng/lttng.c b/lttng/lttng.c index 455b18c58..b9c6b5a8e 100644 --- a/lttng/lttng.c +++ b/lttng/lttng.c @@ -23,6 +23,7 @@ #include #include #include +#include #include @@ -71,6 +72,7 @@ static struct cmd_struct commands[] = { { "add-context", cmd_add_context}, { "set-session", cmd_set_session}, { "version", cmd_version}, + { "calibrate", cmd_calibrate}, { NULL, NULL} /* Array closure */ }; @@ -91,6 +93,7 @@ static void usage(FILE *ofp) fprintf(ofp, "\n"); fprintf(ofp, "Commands:\n"); fprintf(ofp, " add-context Add context to event or/and channel\n"); + fprintf(ofp, " calibrate Quantify LTTng overhead\n"); fprintf(ofp, " create Create tracing session\n"); fprintf(ofp, " destroy Teardown tracing session\n"); fprintf(ofp, " enable-channel Enable tracing channel\n"); @@ -336,8 +339,9 @@ static int check_sessiond(void) /* Let's rock and roll */ if (pathname == NULL) { - ret = asprintf(&alloc_pathname, "ltt-sessiond"); + ret = asprintf(&alloc_pathname, INSTALL_BIN_PATH "/ltt-sessiond"); if (ret < 0) { + perror("asprintf spawn sessiond"); goto end; } pathname = alloc_pathname;