You are here

function lock_initialize in Drupal driver for SQL Server and SQL Azure 7.2

Same name and namespace in other branches
  1. 7.3 sqlsrv/lock.inc \lock_initialize()

Initialize the locking system.

Related topics

File

sqlsrv/lock.inc, line 70
A database-mediated implementation of a locking mechanism.

Code

function lock_initialize() {
  global $locks;
  $locks = array();
}