hide queue introspection behind define

This commit is contained in:
vanhauser-thc
2022-12-20 13:36:56 +01:00
parent 96f05c7f69
commit 0165ca8c6c
4 changed files with 94 additions and 4 deletions

View File

@ -169,12 +169,16 @@ struct queue_entry {
u32 bitmap_size, /* Number of bits set in bitmap */
fuzz_level, /* Number of fuzzing iterations */
n_fuzz_entry, /* offset in n_fuzz */
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
;
u64 exec_us, /* Execution time (us) */
handicap, /* Number of queue cycles behind */