diff options
author | vanhauser-thc <vh@thc.org> | 2023-08-13 11:44:37 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-08-13 11:44:37 +0200 |
commit | 4d8d8633ff39cda2f1d48b66c45e5ae6cd2af477 (patch) | |
tree | 560cd4925a215b0677de488b97aacd4ba161eb00 /include/afl-fuzz.h | |
parent | 26f29fd485efaa08824c27501f82caeea525b5e3 (diff) | |
download | afl++-4d8d8633ff39cda2f1d48b66c45e5ae6cd2af477.tar.gz |
update faq
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 1f89bbd8..3dfd2b2c 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -158,6 +158,7 @@ struct queue_entry { u8 colorized, /* Do not run redqueen stage again */ cal_failed; /* Calibration failed? */ + bool trim_done, /* Trimmed? */ was_fuzzed, /* historical, but needed for MOpt */ passed_det, /* Deterministic stages passed? */ @@ -169,17 +170,15 @@ struct queue_entry { disabled; /* Is disabled from fuzz selection */ u32 bitmap_size, /* Number of bits set in bitmap */ - fuzz_level, /* Number of fuzzing iterations */ - n_fuzz_entry /* offset in n_fuzz */ #ifdef INTROSPECTION - , stats_selected, /* stats: how often selected */ stats_skipped, /* stats: how often skipped */ stats_finds, /* stats: # of saved finds */ stats_crashes, /* stats: # of saved crashes */ - stats_tmouts /* stats: # of saved timeouts */ + stats_tmouts, /* stats: # of saved timeouts */ #endif - ; + fuzz_level, /* Number of fuzzing iterations */ + n_fuzz_entry; /* offset in n_fuzz */ u64 exec_us, /* Execution time (us) */ handicap, /* Number of queue cycles behind */ |