diff options
author | van Hauser <vh@thc.org> | 2021-02-26 09:45:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-26 09:45:43 +0100 |
commit | 78d96c4dc86ac20e2a6e244017407ccc037ff13b (patch) | |
tree | e277f092c27714f75e0c19f9ac8ab18dbfd1745a /include/afl-fuzz.h | |
parent | 7ae7b0f3732cfd9d82cf9403818012d00faa07c3 (diff) | |
parent | ee0ca07f3c9f7c5971440f5dca70a2ee6f37584d (diff) | |
download | afl++-78d96c4dc86ac20e2a6e244017407ccc037ff13b.tar.gz |
Merge pull request #759 from AFLplusplus/dev
push to stable
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 1d5ec1f0..3531d672 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -570,6 +570,7 @@ typedef struct afl_state { blocks_eff_total, /* Blocks subject to effector maps */ blocks_eff_select, /* Blocks selected as fuzzable */ start_time, /* Unix start time (ms) */ + last_sync_time, /* Time of last sync */ last_path_time, /* Time for most recent path (ms) */ last_crash_time, /* Time for most recent crash (ms) */ last_hang_time; /* Time for most recent hang (ms) */ @@ -649,6 +650,7 @@ typedef struct afl_state { u32 cmplog_max_filesize; u32 cmplog_lvl; u32 colorize_success; + u8 cmplog_enable_arith, cmplog_enable_transform; struct afl_pass_stat *pass_stats; struct cmp_map * orig_cmp_map; @@ -1070,8 +1072,8 @@ void destroy_extras(afl_state_t *); void load_stats_file(afl_state_t *); void write_setup_file(afl_state_t *, u32, char **); -void write_stats_file(afl_state_t *, double, double, double); -void maybe_update_plot_file(afl_state_t *, double, double); +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_init_stats(afl_state_t *); |