1 #ifndef DEBUG_PARANOIA_CONFIG_H
2 #define DEBUG_PARANOIA_CONFIG_H
5 // enable paranoia checks (0/1)
6 #ifndef ENABLE_PARANOIA_CHECKS
7 # define ENABLE_PARANOIA_CHECKS 0
10 // number of check slots (should depend on the components for which checks
12 #define PARANOIA_SLOT_COUNT (32 * 1024)
15 // macros that set the paranoia check level for individual components
17 // * PARANOIA_NAIVE (checks disabled)
18 // * PARANOIA_SUSPICIOUS
19 // * PARANOIA_OBSESSIVE
22 #define NET_BUFFER_PARANOIA PARANOIA_NAIVE
23 #define OBJECT_CACHE_PARANOIA PARANOIA_NAIVE
26 #endif // DEBUG_PARANOIA_CONFIG_H