hardened_malloc/config.h

13 lines
205 B
C
Raw Normal View History

2018-09-07 04:17:22 +00:00
#ifndef CONFIG_H
#define CONFIG_H
2018-09-07 06:10:37 +00:00
#include <stdbool.h>
2018-09-07 04:17:22 +00:00
#define GUARD_SLABS true
#define WRITE_AFTER_FREE_CHECK true
#define SLOT_RANDOMIZE true
2018-09-07 04:33:51 +00:00
#define ZERO_ON_FREE true
2018-09-07 04:35:08 +00:00
#define SLAB_CANARY true
2018-09-07 04:17:22 +00:00
#endif