diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-06-19 16:26:19 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-06-19 16:26:19 +0300 |
commit | b1b9f621a44725509aa7b6eab7305542945893a3 (patch) | |
tree | c9925a19d7304f52d9d5e2cc87a5ba5cc72acd4a /src/nxt_log.h | |
parent | 7574c64992b98d3dfbc3dd101bd0f7d78bad0823 (diff) | |
download | unit-b1b9f621a44725509aa7b6eab7305542945893a3.tar.gz unit-b1b9f621a44725509aa7b6eab7305542945893a3.tar.bz2 |
Memory pools refactoring.
Diffstat (limited to 'src/nxt_log.h')
-rw-r--r-- | src/nxt_log.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nxt_log.h b/src/nxt_log.h index 14f07383..e1b69442 100644 --- a/src/nxt_log.h +++ b/src/nxt_log.h @@ -121,9 +121,13 @@ nxt_log_debug(_log, ...) \ } \ } while (0) + +#define nxt_debug_alloc(...) + #else #define nxt_debug(...) +#define nxt_debug_alloc(...) #define \ nxt_log_debug(...) |