function lock_release

Release a lock previously acquired by lock_acquire().

This will release the named lock if it is still held by the current request.

Parameters

$name: The name of the lock.

Related topics

16 calls to lock_release()
DrupalCacheArray::set in drupal/includes/bootstrap.inc
Writes a value to the persistent cache immediately.
drupal_cron_run in drupal/includes/common.inc
Executes a cron run when called.
FieldInfo::getBundleExtraFields in drupal/modules/field/field.info.class.inc
Retrieves the "extra fields" for a bundle.
FieldInfo::getBundleInstances in drupal/modules/field/field.info.class.inc
Retrieves the instances for a bundle.
FieldInfo::getFieldMap in drupal/modules/field/field.info.class.inc
Collects a lightweight map of fields across bundles.

... See full list

File

drupal/includes/lock.inc, line 247
A database-mediated implementation of a locking mechanism.

Code

function lock_release($name) {
  global $locks;
  unset($locks[$name]);
  db_delete('semaphore')
    ->condition('name', $name)
    ->condition('value', _lock_id())
    ->execute();
}