hardened_malloc/config.h

13 lines
205 B
C
Raw Normal View History

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