X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lttng%2Foptions.c;h=1ed0aca7d38b07e7ebf903709a478324b5ee6c04;hb=1657e9bb835a28e66396deac871270fe373d5ff4;hp=61a3802e5548872e72c82d614df76a7b9e6f66cd;hpb=df0da1392bb6c77fff7fc65be518dce7de457ed7;p=lttng-tools.git diff --git a/lttng/options.c b/lttng/options.c index 61a3802e5..1ed0aca7d 100644 --- a/lttng/options.c +++ b/lttng/options.c @@ -33,7 +33,9 @@ int opt_verbose = 0; int opt_list_apps = 0; int opt_no_sessiond = 0; int opt_list_session = 0; +int opt_list_traces = 0; pid_t opt_create_trace = 0; +pid_t opt_start_trace = 0; enum { OPT_HELP = 42, @@ -49,11 +51,13 @@ static struct poptOption long_options[] = { {"kernel", 0, POPT_ARG_VAL, &opt_trace_kernel, 1, 0, 0}, {"list-apps", 'L', POPT_ARG_VAL, &opt_list_apps, 1, 0, 0}, {"list-sessions", 'l', POPT_ARG_VAL, &opt_list_session, 1, 0, 0}, + {"list-traces", 't', POPT_ARG_VAL, &opt_list_traces, 1, 0, 0}, {"no-kernel", 0, POPT_ARG_VAL, &opt_trace_kernel, 0, 0, 0}, {"no-sessiond", 0, POPT_ARG_VAL, &opt_no_sessiond, 1, 0, 0}, {"quiet", 'q', POPT_ARG_VAL, &opt_quiet, 1, 0, 0}, {"session", 's', POPT_ARG_STRING, &opt_session_uuid, 0, 0, 0}, {"sessiond-path", 0, POPT_ARG_STRING, &opt_sessiond_path, 0, 0, 0}, + {"start", 0, POPT_ARG_INT, &opt_start_trace, 0, 0, 0}, {"verbose", 'v', POPT_ARG_VAL, &opt_verbose, 1, 0, 0}, //{"session", 0, POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_session_name, 0, 0}, {0, 0, 0, 0, 0, 0, 0} @@ -86,7 +90,9 @@ static void usage(FILE *ofp) //fprintf(ofp, " --kernel Enable kernel tracing\n"); //fprintf(ofp, " --no-kernel Disable kernel tracing\n"); fprintf(ofp, " -L, --list-apps List traceable UST applications\n"); + fprintf(ofp, " -t, --list-traces List session's traces. Use -s to specify the session\n"); fprintf(ofp, " -C, --create-trace PID Create trace for PID\n"); + fprintf(ofp, " --start PID Start trace for PID\n"); fprintf(ofp, "\n"); fprintf(ofp, "Please see the lttng(1) man page for full documentation.\n"); fprintf(ofp, "See http://lttng.org/ust for updates, bug reports and news.\n"); @@ -108,7 +114,7 @@ int parse_args(int argc, const char **argv) return -1; } - pc = poptGetContext("lttng", argc, argv, long_options, 0); + pc = poptGetContext(NULL, argc, argv, long_options, 0); poptReadDefaultConfig(pc, 0); while ((opt = poptGetNextOpt(pc)) != -1) {