diff options
| author | Jiri Olsa <Jiri Olsa jolsa@redhat.com> | 2010-09-15 22:53:53 +0200 |
|---|---|---|
| committer | Jiri Olsa <Jiri Olsa jolsa@redhat.com> | 2010-09-15 22:53:53 +0200 |
| commit | 2705d8fc95f9377fa6af524011118d626187cd9d (patch) | |
| tree | 4ccafa9f12412a25f14857c955be8aa176672a4d /src | |
| parent | 5e56c0d35f21aa4939b98349842e5354825c635c (diff) | |
| download | latrace-2705d8fc95f9377fa6af524011118d626187cd9d.tar.gz latrace-2705d8fc95f9377fa6af524011118d626187cd9d.tar.xz latrace-2705d8fc95f9377fa6af524011118d626187cd9d.zip | |
synchronize --no-* option names
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/config.c b/src/config.c index 18c07ba..3f3145c 100644 --- a/src/config.c +++ b/src/config.c @@ -51,9 +51,9 @@ static void usage() #endif printf("\n"); printf(" -y, --framesize number framesize for storing the stack before pltexit (default 1000)\n"); - printf(" -Y, --not-framesize-check disable framesize check\n"); - printf(" -F, --not-follow-fork dont follow fork calls - childs\n"); - printf(" -E, --not-follow-exec dont follow exec calls\n"); + printf(" -Y, --no-framesize-check disable framesize check\n"); + printf(" -F, --no-follow-fork dont follow fork calls - childs\n"); + printf(" -E, --no-follow-exec dont follow exec calls\n"); printf("\n"); printf(" -S, --timestamp display timestamp for each symbol\n"); printf(" -b, --flow-below sym1,sym2... display flow only for sym1, sym2 ... \n"); @@ -144,12 +144,12 @@ int lt_config(struct lt_config_app *cfg, int argc, char **argv) {"enable-args", required_argument, 0, 'A'}, {"detail-args", required_argument, 0, 'D'}, {"framesize", required_argument, 0, 'y'}, - {"not-framesize-check ", no_argument, 0, 'Y'}, + {"no-framesize-check ", no_argument, 0, 'Y'}, {"lib-subst", required_argument, 0, 'L'}, {"verbose", no_argument, 0, 'v'}, {"hide-tid", no_argument, 0, 'T'}, - {"not-follow-fork", no_argument, 0, 'F'}, - {"not-follow-exec", no_argument, 0, 'E'}, + {"no-follow-fork", no_argument, 0, 'F'}, + {"no-follow-exec", no_argument, 0, 'E'}, {"disable", no_argument, 0, 'q'}, {"ctl-config", no_argument, 0, 'R'}, {"version", no_argument, 0, 'V'}, |
