diff options
author | unknown <marko@hundin.mysql.fi> | 2005-06-15 12:50:27 +0300 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2005-06-15 12:50:27 +0300 |
commit | 5fed4f3a5026b6fa1b6da28d463b9f43839041a0 (patch) | |
tree | 29db2446b8f188f6989ac63fcc6039655b17b55b /innobase/include/buf0buf.ic | |
parent | 113c6278516f56f5f4a9356b8ffb234d618e782b (diff) | |
download | mariadb-git-5fed4f3a5026b6fa1b6da28d463b9f43839041a0.tar.gz |
InnoDB: Remove unreachable debug code from non-debug builds.
innobase/buf/buf0buf.c:
Remove buf_dbg_counter unless #ifdef UNIV_DEBUG
Remove buf_debug_prints unless #ifdef UNIV_DEBUG
innobase/buf/buf0flu.c:
Remove buf_debug_prints unless #ifdef UNIV_DEBUG
innobase/buf/buf0lru.c:
Remove buf_debug_prints unless #ifdef UNIV_DEBUG
innobase/buf/buf0rea.c:
Remove buf_debug_prints unless #ifdef UNIV_DEBUG
innobase/include/buf0buf.h:
Remove buf_debug_prints unless #ifdef UNIV_DEBUG
innobase/include/buf0buf.ic:
Remove buf_dbg_counter unless #ifdef UNIV_DEBUG
innobase/include/log0log.h:
Remove log_do_write and log_debug_writes unless #ifdef UNIV_DEBUG
innobase/log/log0log.c:
Remove log_do_write and log_debug_writes unless #ifdef UNIV_DEBUG
innobase/log/log0recv.c:
Remove log_debug_writes unless #ifdef UNIV_DEBUG
innobase/srv/srv0start.c:
Remove log_do_write and buf_debug_prints unless #ifdef UNIV_DEBUG
innobase/sync/sync0sync.c:
Remove buf_debug_prints unless #ifdef UNIV_DEBUG
Diffstat (limited to 'innobase/include/buf0buf.ic')
-rw-r--r-- | innobase/include/buf0buf.ic | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/innobase/include/buf0buf.ic b/innobase/include/buf0buf.ic index 9044c3251a4..d949254d47d 100644 --- a/innobase/include/buf0buf.ic +++ b/innobase/include/buf0buf.ic @@ -11,10 +11,11 @@ Created 11/5/1995 Heikki Tuuri #include "buf0rea.h" #include "mtr0mtr.h" +#ifdef UNIV_DEBUG extern ulint buf_dbg_counter; /* This is used to insert validation operations in execution in the debug version */ - +#endif /* UNIV_DEBUG */ /************************************************************************ Recommends a move of a block to the start of the LRU list if there is danger of dropping from the buffer pool. NOTE: does not reserve the buffer pool |