diff options
author | Nils Bars <nils.bars@rub.de> | 2022-10-24 18:08:29 +0200 |
---|---|---|
committer | Nils Bars <nils.bars@rub.de> | 2022-10-24 18:08:29 +0200 |
commit | 2cbe49c6eb9fa3514289a088e68c847949d9d4cc (patch) | |
tree | 8a487b34a99d3d8694c75bccbbc01403ebe0ae86 /src | |
parent | 102b749c0734165f1cb121397e4a4c307666b8eb (diff) | |
download | afl++-2cbe49c6eb9fa3514289a088e68c847949d9d4cc.tar.gz |
Update usage messages
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz.c | 3 | ||||
-rw-r--r-- | src/afl-showmap.c | 9 | ||||
-rw-r--r-- | src/afl-tmin.c | 3 |
3 files changed, 10 insertions, 5 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 7e4e20a0..d8d804ae 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -262,6 +262,9 @@ static void usage(u8 *argv0, int more_help) { "AFL_INPUT_LEN_MIN/AFL_INPUT_LEN_MAX: like -g/-G set min/max fuzz length produced\n" "AFL_PIZZA_MODE: 1 - enforce pizza mode, 0 - disable for April 1st\n" "AFL_KILL_SIGNAL: Signal ID delivered to child processes on timeout, etc. (default: SIGKILL)\n" + "AFL_FORK_SERVER_KILL_SIGNAL: Signal delivered to fork server processes on termination\n" + " (default: SIGTERM). If this is not set and AFL_KILL_SIGNAL is set,\n" + " this will be set to the same value.\n" "AFL_MAP_SIZE: the shared memory size for that target. must be >= the size\n" " the target was compiled for\n" "AFL_MAX_DET_EXTRAS: if more entries are in the dictionary list than this value\n" diff --git a/src/afl-showmap.c b/src/afl-showmap.c index 19288c04..31091e8e 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -864,10 +864,11 @@ static void usage(u8 *argv0) { "AFL_DEBUG: enable extra developer output\n" "AFL_FORKSRV_INIT_TMOUT: time spent waiting for forkserver during " "startup (in milliseconds)\n" - "AFL_KILL_SIGNAL: Signal ID delivered to child processes on timeout, " - "etc. (default: SIGKILL)\n" - "AFL_FORK_SERVER_KILL_SIGNAL: Signal delivered to fork server processes on termination" - " (default: SIGTERM)\n" + "AFL_KILL_SIGNAL: Signal ID delivered to child processes on timeout,\n" + " etc. (default: SIGKILL)\n" + "AFL_FORK_SERVER_KILL_SIGNAL: Signal delivered to fork server processes on termination\n" + " (default: SIGTERM). If this is not set and AFL_KILL_SIGNAL is set,\n" + " this will be set to the same value as AFL_KILL_SIGNAL.\n" "AFL_MAP_SIZE: the shared memory size for that target. must be >= the " "size the target was compiled for\n" "AFL_PRELOAD: LD_PRELOAD / DYLD_INSERT_LIBRARIES settings for target\n" diff --git a/src/afl-tmin.c b/src/afl-tmin.c index 43636b6f..b346f65c 100644 --- a/src/afl-tmin.c +++ b/src/afl-tmin.c @@ -882,7 +882,8 @@ static void usage(u8 *argv0) { "AFL_FORKSRV_INIT_TMOUT: time spent waiting for forkserver during startup (in milliseconds)\n" "AFL_KILL_SIGNAL: Signal ID delivered to child processes on timeout, etc. (default: SIGKILL)\n" "AFL_FORK_SERVER_KILL_SIGNAL: Signal delivered to fork server processes on termination\n" - " (default: SIGTERM)\n" + " (default: SIGTERM). If this is not set and AFL_KILL_SIGNAL is set,\n" + " this will be set to the same value as AFL_KILL_SIGNAL.\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" |