diff options
author | van Hauser <vh@thc.org> | 2020-04-17 10:21:41 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-17 10:21:41 +0200 |
commit | 248a2f2f0bfddd9f79a4c6b6ceadef32f1765969 (patch) | |
tree | 7a6f8fe4cd8e426eb8eaa8a3eb0a19547a54cd90 /src/afl-showmap.c | |
parent | ef311ec70cd9f58cc58fe67fd693d94e01edbf98 (diff) | |
download | afl++-248a2f2f0bfddd9f79a4c6b6ceadef32f1765969.tar.gz |
added AFL_MAP_SIZE to env help output
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index c1561b4c..59c76d41 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -515,13 +515,16 @@ static void usage(u8 *argv0) { "For additional help, consult %s/README.md.\n\n" "Environment variables used:\n" - "AFL_PRELOAD: LD_PRELOAD / DYLD_INSERT_LIBRARIES settings for target\n" - "AFL_DEBUG: enable extra developer output\n" - "AFL_QUIET: do not print extra informational output" + "LD_BIND_LAZY: do not set LD_BIND_NOW env var for target\n", "AFL_CMIN_CRASHES_ONLY: (cmin_mode) only write tuples for crashing " "inputs\n" "AFL_CMIN_ALLOW_ANY: (cmin_mode) write tuples for crashing inputs also\n" - "LD_BIND_LAZY: do not set LD_BIND_NOW env var for target\n", + "AFL_DEBUG: enable extra developer output\n" + "AFL_MAP_SIZE: the shared memory size for that target. must be >= the " + "size\n" + " the target was compiled for\n" + "AFL_PRELOAD: LD_PRELOAD / DYLD_INSERT_LIBRARIES settings for target\n" + "AFL_QUIET: do not print extra informational output" argv0, MEM_LIMIT, doc_path); exit(1); |