diff options
author | van Hauser <vh@thc.org> | 2020-08-15 13:34:51 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-08-15 13:34:51 +0200 |
commit | 0a251f93e0842c92755e9bcba61e520669a6c2e6 (patch) | |
tree | fd715c8567ed5141a0a03b62de6cb85aeac29f44 /include/config.h | |
parent | 1cf473848789b340134b68b02d793c6d90f746a8 (diff) | |
download | afl++-0a251f93e0842c92755e9bcba61e520669a6c2e6.tar.gz |
increase initial memory sized
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/config.h b/include/config.h index 344a368f..a978a27c 100644 --- a/include/config.h +++ b/include/config.h @@ -70,21 +70,21 @@ #ifndef __NetBSD__ #ifndef WORD_SIZE_64 - #define MEM_LIMIT 25 - #else #define MEM_LIMIT 50 + #else + #define MEM_LIMIT 75 #endif /* ^!WORD_SIZE_64 */ #else /* NetBSD's kernel needs more space for stack, see discussion for issue \ #165 */ - #define MEM_LIMIT 200 + #define MEM_LIMIT 250 #endif /* Default memory limit when running in QEMU mode (MB): */ -#define MEM_LIMIT_QEMU 200 +#define MEM_LIMIT_QEMU 250 /* Default memory limit when running in Unicorn mode (MB): */ -#define MEM_LIMIT_UNICORN 200 +#define MEM_LIMIT_UNICORN 250 /* Number of calibration cycles per every new test case (and for test cases that show variable behavior): */ |