diff options
author | unknown <marko@hundin.mysql.fi> | 2004-04-07 14:19:26 +0300 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-04-07 14:19:26 +0300 |
commit | 095d64633b94e5e840503a26dd9ec2c0a66dfd5f (patch) | |
tree | 2f1cb9f7307ff2cede7e13d739760692e11dcaaf /innobase/include/lock0lock.h | |
parent | 1f50a0345c78ff969ddabf52322d3feeb163ec67 (diff) | |
download | mariadb-git-095d64633b94e5e840503a26dd9ec2c0a66dfd5f.tar.gz |
InnoDB: Remove debug functions unless #ifdef UNIV_DEBUG
innobase/btr/btr0btr.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/buf/buf0buf.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/buf/buf0flu.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/buf/buf0lru.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/buf/buf0rea.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/data/data0type.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/dict/dict0dict.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/fsp/fsp0fsp.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/fut/fut0lst.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/ibuf/ibuf0ibuf.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/btr0btr.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/buf0buf.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/buf0buf.ic:
Remove global declaration of buf_dbg_counter
innobase/include/buf0flu.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/buf0lru.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/data0type.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/dict0dict.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/fsp0fsp.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/fut0lst.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/lock0lock.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/mem0dbg.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/mem0dbg.ic:
Add #ifdef UNIV_MEM_DEBUG around debug code
innobase/include/mem0pool.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/mtr0mtr.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/pars0opt.h:
Add #ifdef UNIV_SQL_DEBUG around debug code
innobase/include/sync0rw.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/sync0sync.h:
Add #ifdef UNIV_DEBUG around debug code
innobase/include/trx0sys.h:
Add #ifdef UNIV_HOTBACKUP around InnoDB Hot Backup specific code
innobase/lock/lock0lock.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/mem/mem0dbg.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/mem/mem0pool.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/mtr/mtr0mtr.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/pars/pars0opt.c:
Add #ifdef UNIV_SQL_DEBUG around debug code
innobase/srv/srv0start.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/sync/sync0rw.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/sync/sync0sync.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/trx/trx0roll.c:
Add #ifdef UNIV_DEBUG around debug code
innobase/trx/trx0sys.c:
Add #ifdef UNIV_HOTBACKUP around InnoDB Hot Backup specific code
Diffstat (limited to 'innobase/include/lock0lock.h')
-rw-r--r-- | innobase/include/lock0lock.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/innobase/include/lock0lock.h b/innobase/include/lock0lock.h index 94ef3b33ebc..9ccea5ad7a4 100644 --- a/innobase/include/lock0lock.h +++ b/innobase/include/lock0lock.h @@ -19,7 +19,9 @@ Created 5/7/1996 Heikki Tuuri #include "read0types.h" #include "hash0hash.h" +#ifdef UNIV_DEBUG extern ibool lock_print_waits; +#endif /* UNIV_DEBUG */ /* Buffer for storing information about the most recent deadlock error */ extern FILE* lock_latest_err_file; @@ -455,6 +457,7 @@ lock_check_trx_id_sanity( dict_index_t* index, /* in: clustered index */ ibool has_kernel_mutex);/* in: TRUE if the caller owns the kernel mutex */ +#ifdef UNIV_DEBUG /************************************************************************* Validates the lock queue on a single record. */ @@ -464,6 +467,7 @@ lock_rec_queue_validate( /* out: TRUE if ok */ rec_t* rec, /* in: record to look at */ dict_index_t* index); /* in: index, or NULL if not known */ +#endif /* UNIV_DEBUG */ /************************************************************************* Prints info of a table lock. */ @@ -487,6 +491,7 @@ void lock_print_info( /*============*/ FILE* file); /* in: file where to print */ +#ifdef UNIV_DEBUG /************************************************************************* Validates the lock queue on a table. */ @@ -511,6 +516,7 @@ ibool lock_validate(void); /*===============*/ /* out: TRUE if ok */ +#endif /* UNIV_DEBUG */ /* The lock system */ extern lock_sys_t* lock_sys; |