From: Florian Forster Date: Tue, 16 Jul 2013 09:44:58 +0000 (+0200) Subject: src/statsd-tg.c: Actually handle the "-T" command line option. X-Git-Tag: v1.0.1~4 X-Git-Url: https://git.octo.it/?p=statsd-tg.git;a=commitdiff_plain;h=b7e0293c739c52a7a018312ea949fbb6b37a1214 src/statsd-tg.c: Actually handle the "-T" command line option. --- diff --git a/src/statsd-tg.c b/src/statsd-tg.c index 3f792f7..9ab324f 100644 --- a/src/statsd-tg.c +++ b/src/statsd-tg.c @@ -86,6 +86,7 @@ static void exit_usage (int exit_status) /* {{{ */ " (Default: "DEF_NODE")\n" " -D Destination port of the network packets.\n" " (Default: "DEF_SERVICE")\n" + " -T Number of threads to use to generate load.\n" " -h Print usage information (this output).\n" "\n" "Copyright (C) 2013 Florian Forster\n" @@ -248,7 +249,7 @@ static int read_options (int argc, char **argv) /* {{{ */ conf_threads_num = (int) sysconf (_SC_NPROCESSORS_ONLN); #endif - while ((opt = getopt (argc, argv, "c:t:g:s:S:d:D:h")) != -1) + while ((opt = getopt (argc, argv, "c:t:g:s:S:d:D:T:h")) != -1) { switch (opt) {