diff options
author | van Hauser <vh@thc.org> | 2020-07-26 15:55:03 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-07-26 15:55:03 +0200 |
commit | 16e362d2b93a60d6c50fca6abfabd9976ca6142d (patch) | |
tree | f2c97c7022873e57ae2b60d38c828f6f1d12d275 /include/afl-fuzz.h | |
parent | 23da490f265c761e44c4282eba76f7681f18fd2a (diff) | |
download | afl++-16e362d2b93a60d6c50fca6abfabd9976ca6142d.tar.gz |
add last 60s exec/s stat
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index cf4254ac..c0c4cfd5 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -581,6 +581,10 @@ typedef struct afl_state { u8 describe_op_buf_256[256]; /* describe_op will use this to return a string up to 256 */ + unsigned long long int last_avg_exec_update; + u32 last_avg_execs; + float last_avg_execs_saved; + /* foreign sync */ #define FOREIGN_SYNCS_MAX 32 u8 foreign_sync_cnt; |