diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 3 | ||||
-rw-r--r-- | include/cmplog.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index c62fcc84..46bead3a 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -118,7 +118,8 @@ struct queue_entry { has_new_cov, /* Triggers new coverage? */ var_behavior, /* Variable behavior? */ favored, /* Currently favored? */ - fs_redundant; /* Marked as redundant in the fs? */ + fs_redundant, /* Marked as redundant in the fs? */ + fully_colorized; /* Do not run redqueen stage again */ u32 bitmap_size, /* Number of bits set in bitmap */ fuzz_level, /* Number of fuzzing iterations */ diff --git a/include/cmplog.h b/include/cmplog.h index c02650ee..18c6a7ef 100644 --- a/include/cmplog.h +++ b/include/cmplog.h @@ -31,6 +31,7 @@ #define CMP_MAP_W 65536 #define CMP_MAP_H 256 +#define CMP_MAP_RTN_H (CMP_MAP_H / 4) #define SHAPE_BYTES(x) (x + 1) |