diff options
author | van Hauser <vh@thc.org> | 2022-04-08 23:12:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 23:12:33 +0200 |
commit | c208dcf9c573e3d85990c7dea777646f7fa4961c (patch) | |
tree | 863f7475bcadc4ee60eed6c0af50c897f6c5c276 /include | |
parent | 9933a6f3ab6c5b02c9f108dded6eb93ed59d2941 (diff) | |
parent | d8317182ef5e2afbff56de697be85b10a4abece1 (diff) | |
download | afl++-c208dcf9c573e3d85990c7dea777646f7fa4961c.tar.gz |
Merge pull request #1383 from AFLplusplus/keep_tout
Keep timeouts option
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 2 | ||||
-rw-r--r-- | include/envs.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 4f4d63b2..8bb61e22 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -385,7 +385,7 @@ typedef struct afl_env_vars { afl_bench_until_crash, afl_debug_child, afl_autoresume, afl_cal_fast, afl_cycle_schedules, afl_expand_havoc, afl_statsd, afl_cmplog_only_new, afl_exit_on_seed_issues, afl_try_affinity, afl_ignore_problems, - afl_pizza_mode; + afl_keep_timeouts, afl_pizza_mode; u8 *afl_tmpdir, *afl_custom_mutator_library, *afl_python_module, *afl_path, *afl_hang_tmout, *afl_forksrv_init_tmout, *afl_preload, diff --git a/include/envs.h b/include/envs.h index 1746f946..25b792fa 100644 --- a/include/envs.h +++ b/include/envs.h @@ -106,6 +106,7 @@ static char *afl_environment_variables[] = { "AFL_INPUT_LEN_MAX", "AFL_INST_LIBS", "AFL_INST_RATIO", + "AFL_KEEP_TIMEOUTS", "AFL_KILL_SIGNAL", "AFL_KEEP_TRACES", "AFL_KEEP_ASSEMBLY", |