CLEANUP: makefile: update the outdated list of DEBUG_xxx options

A few options didn't exist anymore (FSM, HASH) and quite a few ones were
added since last update (MEM_STATS, DONT_SHARE_POOLS, NO_LOCKLESS_POOLS,
NO_LOCAL_POOLS, FAIL_ALLOC, STRICT_NOCRASH, HPACK.
This commit is contained in:
Willy Tarreau 2020-07-04 12:43:46 +02:00
parent 46ac781779
commit 4c442b08b3
1 changed files with 7 additions and 4 deletions

View File

@ -211,10 +211,13 @@ SMALL_OPTS =
#### Debug settings #### Debug settings
# You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx. # You can enable debugging on specific code parts by setting DEBUG=-DDEBUG_xxx.
# Currently defined DEBUG macros include DEBUG_FULL, DEBUG_MEMORY, DEBUG_FSM, # Use quotes and spaces if multiple options are needed (the DEBUG variables is
# DEBUG_HASH, DEBUG_AUTH, DEBUG_SPOE, DEBUG_UAF and DEBUG_THREAD, DEBUG_STRICT, # passed as-is to CFLAGS). Please check sources for their exact meaning or do
# DEBUG_DEV, DEBUG_FD. Please check sources for exact meaning or do not use at # not use them at all. Some even more obscure ones might also be available
# all. # without appearing here. Currently defined DEBUG macros include DEBUG_FULL,
# DEBUG_MEM_STATS, DEBUG_DONT_SHARE_POOLS, DEBUG_NO_LOCKLESS_POOLS, DEBUG_FD,
# DEBUG_NO_LOCAL_POOLS, DEBUG_FAIL_ALLOC, DEBUG_STRICT_NOCRASH, DEBUG_HPACK,
# DEBUG_AUTH, DEBUG_SPOE, DEBUG_UAF, DEBUG_THREAD, DEBUG_STRICT, DEBUG_DEV.
DEBUG = DEBUG =
#### Trace options #### Trace options