MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
lock0iter.cc File Reference
#include "univ.i"
#include "lock0iter.h"
#include "lock0lock.h"
#include "lock0priv.h"
#include "ut0dbg.h"
#include "ut0lst.h"
Include dependency graph for lock0iter.cc:

Go to the source code of this file.

Functions

UNIV_INTERN void lock_queue_iterator_reset (lock_queue_iterator_t *iter, const lock_t *lock, ulint bit_no)
UNIV_INTERN const lock_tlock_queue_iterator_get_prev (lock_queue_iterator_t *iter)

Detailed Description

Lock queue iterator. Can iterate over table and record lock queues.

Created July 16, 2007 Vasil Dimov

Definition in file lock0iter.cc.

Function Documentation

UNIV_INTERN const lock_t* lock_queue_iterator_get_prev ( lock_queue_iterator_t iter)

Gets the previous lock in the lock queue, returns NULL if there are no more locks (i.e. the current lock is the first one). The iterator is receded (if not-NULL is returned).

Returns
previous lock or NULL
Parameters
iterin/out: iterator

Definition at line 84 of file lock0iter.cc.

Here is the call graph for this function:

UNIV_INTERN void lock_queue_iterator_reset ( lock_queue_iterator_t iter,
const lock_t lock,
ulint  bit_no 
)

Initialize lock queue iterator so that it starts to iterate from "lock". bit_no specifies the record number within the heap where the record is stored. It can be undefined (ULINT_UNDEFINED) in two cases:

  1. If the lock is a table lock, thus we have a table lock queue;
  2. If the lock is a record lock and it is a wait lock. In this case bit_no is calculated in this function by using lock_rec_find_set_bit(). There is exactly one bit set in the bitmap of a wait lock.
Parameters
iterout: iterator
lockin: lock to start from
bit_noin: record number in the heap

Definition at line 47 of file lock0iter.cc.

Here is the call graph for this function: