diff options
author | vj-27 <vimal.joseph.027@gmail.com> | 2021-02-07 03:33:47 +0530 |
---|---|---|
committer | vj-27 <vimal.joseph.027@gmail.com> | 2021-02-07 03:33:47 +0530 |
commit | 96cdc97c98ee2e2af7df59252f4f0df1689afb7b (patch) | |
tree | caaafd5674ecd991e9b4f2248aa8d42cb8301e88 /include/afl-fuzz.h | |
parent | f54c4dbfdb17a06798b337a2182d7cf33ec178dd (diff) | |
download | afl++-96cdc97c98ee2e2af7df59252f4f0df1689afb7b.tar.gz |
prev_run_time loaded used only for ui and when writing the stats file
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 4027a88f..1d5ec1f0 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -425,7 +425,8 @@ typedef struct afl_state { really makes no sense to haul them around as function parameters. */ u64 orig_hit_cnt_puppet, last_limit_time_start, tmp_pilot_time, total_pacemaker_time, total_puppet_find, temp_puppet_find, most_time_key, - most_time, most_execs_key, most_execs, old_hit_count, force_ui_update; + most_time, most_execs_key, most_execs, old_hit_count, force_ui_update, + prev_run_time; MOpt_globals_t mopt_globals_core, mopt_globals_pilot; @@ -569,7 +570,6 @@ 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) */ - prev_run_time, /* Runtime read from prev stats file*/ 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) */ |