函数lock_rec_get_n_bits

 

/*********************************************************************//**
Gets the number of bits in a record lock bitmap.
@return    number of bits */
UNIV_INLINE
ulint
lock_rec_get_n_bits(
/*================*/
    const lock_t*    lock)    /*!< in: record lock */
{
    return(lock->un_member.rec_lock.n_bits);
}

 

你可能感兴趣的:(函数lock_rec_get_n_bits)