diff options
author | van Hauser <vh@thc.org> | 2022-12-20 14:31:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 14:31:09 +0100 |
commit | 60dc37a8cf09f8e9048e4b6a2204d6c90b27655a (patch) | |
tree | ab66c723be9ccadde42329cc85de1c141f8bddcd /docs/env_variables.md | |
parent | 8cdc48f73a17ddd557897f2098937a8ba3bfe184 (diff) | |
parent | 0165ca8c6c485e36fe8e5fc6182ebeba2100932b (diff) | |
download | afl++-60dc37a8cf09f8e9048e4b6a2204d6c90b27655a.tar.gz |
Merge pull request #1592 from AFLplusplus/dev
Dev
Diffstat (limited to 'docs/env_variables.md')
-rw-r--r-- | docs/env_variables.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/env_variables.md b/docs/env_variables.md index d1c13e15..22a5c386 100644 --- a/docs/env_variables.md +++ b/docs/env_variables.md @@ -378,10 +378,10 @@ checks or alter some of the more exotic semantics of the tool: valid terminal was detected (for virtual consoles). - Setting `AFL_FORKSRV_INIT_TMOUT` allows you to specify a different timeout - to wait for the forkserver to spin up. The default is the `-t` value times - `FORK_WAIT_MULT` from `config.h` (usually 10), so for a `-t 100`, the - default would wait for `1000` milliseconds. Setting a different time here is - useful if the target has a very slow startup time, for example, when doing + to wait for the forkserver to spin up. The specified value is the new timeout, in milliseconds. + The default is the `-t` value times `FORK_WAIT_MULT` from `config.h` (usually 10), so for a `-t 100`, the default would wait for `1000` milliseconds. + The `AFL_FORKSRV_INIT_TMOUT` value does not get multiplied. It overwrites the initial timeout afl-fuzz waits for the target to come up with a constant time. + Setting a different time here is useful if the target has a very slow startup time, for example, when doing full-system fuzzing or emulation, but you don't want the actual runs to wait too long for timeouts. |