2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 14:25:41 +00:00
This commit is contained in:
Ted Lemon
2000-02-02 08:02:24 +00:00
parent 88c32c8c25
commit 9da31b16f7

View File

@@ -45,31 +45,31 @@
/* Define this if you want to track memory usage for the purpose of /* Define this if you want to track memory usage for the purpose of
noticing memory leaks quickly. */ noticing memory leaks quickly. */
#define DEBUG_MEMORY_LEAKAGE /* #define DEBUG_MEMORY_LEAKAGE */
/* Define this if you want exhaustive (and very slow) checking of the /* Define this if you want exhaustive (and very slow) checking of the
malloc pool for corruption. */ malloc pool for corruption. */
#define DEBUG_MALLOC_POOL /* #define DEBUG_MALLOC_POOL */
/* Define this if you want to maintain a history of the last N operations /* Define this if you want to maintain a history of the last N operations
that changed reference counts on objects. This can be used to debug that changed reference counts on objects. This can be used to debug
cases where an object is dereferenced too often, or not often enough. */ cases where an object is dereferenced too often, or not often enough. */
#define DEBUG_RC_HISTORY /* #define DEBUG_RC_HISTORY */
/* Define this if you want to see the history every cycle. */ /* Define this if you want to see the history every cycle. */
/* #define DEBUG_RC_HISTORY_EXHAUSTIVELY */ /* #define DEBUG_RC_HISTORY_EXHAUSTIVELY */
/* This is the number of history entries to maintain - by default, 256. */ /* This is the number of history entries to maintain - by default, 256. */
#define RC_HISTORY_MAX 1024 /* #define RC_HISTORY_MAX 1024 */
/* Define this if you want dhcpd to dump core when a non-fatal memory /* Define this if you want dhcpd to dump core when a non-fatal memory
allocation error is detected (i.e., something that would cause a allocation error is detected (i.e., something that would cause a
memory leak rather than a memory smash). */ memory leak rather than a memory smash). */
#define POINTER_DEBUG /* #define POINTER_DEBUG */
/* Define this if you want debugging output for DHCP failover protocol /* Define this if you want debugging output for DHCP failover protocol
messages. */ messages. */