Fix: Remove undocumented session daemon short options
[lttng-tools.git] / src / bin / lttng-sessiond / main.c
index b2a8f555c5fc072b39e1e922a5eef84a2b1b8f43..aff833243ad968fbed03e27ffc32d52f3599bcad 100644 (file)
@@ -135,16 +135,16 @@ static struct consumer_data ustconsumer32_data = {
 static const struct option long_options[] = {
        { "client-sock", 1, 0, 'c' },
        { "apps-sock", 1, 0, 'a' },
-       { "kconsumerd-cmd-sock", 1, 0, 'C' },
-       { "kconsumerd-err-sock", 1, 0, 'E' },
-       { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
-       { "ustconsumerd32-err-sock", 1, 0, 'H' },
-       { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
-       { "ustconsumerd64-err-sock", 1, 0, 'F' },
-       { "consumerd32-path", 1, 0, 'u' },
-       { "consumerd32-libdir", 1, 0, 'U' },
-       { "consumerd64-path", 1, 0, 't' },
-       { "consumerd64-libdir", 1, 0, 'T' },
+       { "kconsumerd-cmd-sock", 1, 0, '\0' },
+       { "kconsumerd-err-sock", 1, 0, '\0' },
+       { "ustconsumerd32-cmd-sock", 1, 0, '\0' },
+       { "ustconsumerd32-err-sock", 1, 0, '\0' },
+       { "ustconsumerd64-cmd-sock", 1, 0, '\0' },
+       { "ustconsumerd64-err-sock", 1, 0, '\0' },
+       { "consumerd32-path", 1, 0, '\0' },
+       { "consumerd32-libdir", 1, 0, '\0' },
+       { "consumerd64-path", 1, 0, '\0' },
+       { "consumerd64-libdir", 1, 0, '\0' },
        { "daemonize", 0, 0, 'd' },
        { "background", 0, 0, 'b' },
        { "sig-parent", 0, 0, 'S' },
@@ -153,14 +153,14 @@ static const struct option long_options[] = {
        { "version", 0, 0, 'V' },
        { "quiet", 0, 0, 'q' },
        { "verbose", 0, 0, 'v' },
-       { "verbose-consumer", 0, 0, 'Z' },
-       { "no-kernel", 0, 0, 'N' },
+       { "verbose-consumer", 0, 0, '\0' },
+       { "no-kernel", 0, 0, '\0' },
        { "pidfile", 1, 0, 'p' },
-       { "agent-tcp-port", 1, 0, 'J' },
+       { "agent-tcp-port", 1, 0, '\0' },
        { "config", 1, 0, 'f' },
        { "load", 1, 0, 'l' },
-       { "kmod-probes", 1, 0, 'P' },
-       { "extra-kmod-probes", 1, 0, 'e' },
+       { "kmod-probes", 1, 0, '\0' },
+       { "extra-kmod-probes", 1, 0, '\0' },
        { NULL, 0, 0, 0 }
 };
 
@@ -5630,6 +5630,7 @@ int main(int argc, char **argv)
         * cleanup() can get called after that point.
         */
        if (ust_app_ht_alloc()) {
+               ERR("Failed to allocate UST app hash table");
                retval = -1;
                goto exit_init_data;
        }
This page took 0.027578 seconds and 5 git commands to generate.