diff options
author | van Hauser <vh@thc.org> | 2022-04-03 09:31:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 09:31:23 +0200 |
commit | ef5543680aea31e193ea5794c023dac8cc3ca7d6 (patch) | |
tree | 8dc251d65376b47ce17121bdf328fc79c68243f2 /include/afl-fuzz.h | |
parent | c4363dd8b3d19a3e4bab8bc1fca1708ae2ff7899 (diff) | |
parent | 26f3ec28eef78f3a57bc3c308de9a3105cb63538 (diff) | |
download | afl++-ef5543680aea31e193ea5794c023dac8cc3ca7d6.tar.gz |
Merge pull request #1374 from CarloMara/stable
Add new mode to AFLplusplus
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 3712fc4f..6cde7695 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -384,7 +384,8 @@ typedef struct afl_env_vars { afl_force_ui, afl_i_dont_care_about_missing_crashes, afl_bench_just_one, 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_exit_on_seed_issues, afl_try_affinity, afl_ignore_problems, + afl_pizza_mode; u8 *afl_tmpdir, *afl_custom_mutator_library, *afl_python_module, *afl_path, *afl_hang_tmout, *afl_forksrv_init_tmout, *afl_preload, @@ -1082,6 +1083,8 @@ void write_setup_file(afl_state_t *, u32, char **); void write_stats_file(afl_state_t *, u32, double, double, double); void maybe_update_plot_file(afl_state_t *, u32, double, double); void show_stats(afl_state_t *); +void show_stats_normal(afl_state_t *); +void show_stats_pizza(afl_state_t *); void show_init_stats(afl_state_t *); /* StatsD */ |