mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
lock0lock.c:
Fix compiler warning
This commit is contained in:
parent
46826a291d
commit
e7500f435f
1 changed files with 9 additions and 0 deletions
|
@ -365,6 +365,15 @@ lock_deadlock_recursive(
|
|||
ulint* cost); /* in/out: number of calculation steps thus
|
||||
far: if this exceeds LOCK_MAX_N_STEPS_...
|
||||
we return TRUE */
|
||||
/*************************************************************************
|
||||
Gets the nth bit of a record lock. */
|
||||
UNIV_INLINE
|
||||
ibool
|
||||
lock_rec_get_nth_bit(
|
||||
/*=================*/
|
||||
/* out: TRUE if bit set */
|
||||
lock_t* lock, /* in: record lock */
|
||||
ulint i); /* in: index of the bit */
|
||||
|
||||
#define lock_mutex_enter_kernel() mutex_enter(&kernel_mutex)
|
||||
#define lock_mutex_exit_kernel() mutex_exit(&kernel_mutex)
|
||||
|
|
Loading…
Add table
Reference in a new issue