diff options
author | vanhauser-thc <vh@thc.org> | 2021-10-31 12:29:45 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-10-31 12:29:45 +0100 |
commit | 639d108512027bda6e7baf4a96f9d4e058e3c1d3 (patch) | |
tree | e5dce2a4c34632f6426e5b846dbd8713f4d2551c /include | |
parent | e2ca7a63972ef3c245395bea7bb89d873ad757af (diff) | |
download | afl++-639d108512027bda6e7baf4a96f9d4e058e3c1d3.tar.gz |
add cmplog compatability check
Diffstat (limited to 'include')
-rw-r--r-- | include/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h index 7b94fb83..063e6bbd 100644 --- a/include/types.h +++ b/include/types.h @@ -46,6 +46,7 @@ typedef uint128_t u128; #define FS_ERROR_SHM_OPEN 4 #define FS_ERROR_SHMAT 8 #define FS_ERROR_MMAP 16 +#define FS_ERROR_OLD_CMPLOG 32 /* Reporting options */ #define FS_OPT_ENABLED 0x80000001 @@ -53,6 +54,7 @@ typedef uint128_t u128; #define FS_OPT_SNAPSHOT 0x20000000 #define FS_OPT_AUTODICT 0x10000000 #define FS_OPT_SHDMEM_FUZZ 0x01000000 +#define FS_OPT_NEWCMPLOG 0x02000000 #define FS_OPT_OLD_AFLPP_WORKAROUND 0x0f000000 // FS_OPT_MAX_MAPSIZE is 8388608 = 0x800000 = 2^23 = 1 << 22 #define FS_OPT_MAX_MAPSIZE ((0x00fffffeU >> 1) + 1) |