mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-23 06:28:51 +00:00
increased default memory limit (200megs) on NetBSD (due to kernel bug), fixes the afl-tmin test
This commit is contained in:
@ -61,12 +61,15 @@
|
||||
|
||||
/* Default memory limit for child process (MB): */
|
||||
|
||||
#ifndef WORD_SIZE_64
|
||||
#define MEM_LIMIT 25
|
||||
#ifndef __NetBSD__
|
||||
# ifndef WORD_SIZE_64
|
||||
# define MEM_LIMIT 25
|
||||
# else
|
||||
# define MEM_LIMIT 50
|
||||
# endif /* ^!WORD_SIZE_64 */
|
||||
#else
|
||||
#define MEM_LIMIT 50
|
||||
#endif /* ^!WORD_SIZE_64 */
|
||||
|
||||
# define MEM_LIMIT 200
|
||||
#endif
|
||||
/* Default memory limit when running in QEMU mode (MB): */
|
||||
|
||||
#define MEM_LIMIT_QEMU 200
|
||||
|
Reference in New Issue
Block a user