diff options
author | vanhauser-thc <vh@thc.org> | 2022-08-14 12:24:42 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-08-14 12:30:23 +0200 |
commit | 3200e6515b9cc988d0d8dccd27257baccc8df021 (patch) | |
tree | 6a3538d9e3d13a78a5227fca69258c46a9fb5c76 /include/afl-fuzz.h | |
parent | 89d6e306f29d1424012cdbb95d5cb18f6e36932f (diff) | |
download | afl++-3200e6515b9cc988d0d8dccd27257baccc8df021.tar.gz |
add AFL_NO_STARTUP_CALIBRATION feature
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 061076ed..822096e8 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -386,7 +386,8 @@ 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_keep_timeouts, afl_pizza_mode, afl_no_crash_readme; + afl_keep_timeouts, afl_pizza_mode, afl_no_crash_readme, + afl_no_startup_calibration; u8 *afl_tmpdir, *afl_custom_mutator_library, *afl_python_module, *afl_path, *afl_hang_tmout, *afl_forksrv_init_tmout, *afl_preload, @@ -1122,6 +1123,7 @@ void bind_to_free_cpu(afl_state_t *); void setup_post(afl_state_t *); void read_testcases(afl_state_t *, u8 *); void perform_dry_run(afl_state_t *); +void no_dry_run(afl_state_t *); void pivot_inputs(afl_state_t *); u32 find_start_position(afl_state_t *); void find_timeout(afl_state_t *); |