source: sipes/cord/includes/lock-install.inc @ 5c31d5d

stableversion-3.0
Last change on this file since 5c31d5d was 78a3f26, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego los archivos del cord

  • Propiedad mode establecida a 100644
File size: 1.2 KB
Línea 
1<?php
2
3/**
4 * @file
5 * A stub lock implementation to be used during the installation
6 * process when database access is not yet available. Because Drupal's
7 * install system should never be running in more than on concurrant
8 * request, we can bypass any need for locking.
9 */
10
11/**
12 * Initialize the locking system.
13 */
14function lock_init() {
15}
16
17/**
18 * Acquire (or renew) a lock, but do not block if it fails.
19 *
20 * @return
21 *   TRUE if the lock was acquired, FALSE if it failed.
22 */
23function lock_acquire($name, $timeout = 30.0) {
24  return TRUE;
25}
26
27/**
28 * Check if lock acquired by a different process may be available.
29 *
30 * @return
31 *   TRUE if there is no lock or it was removed, FALSE otherwise.
32 */
33function lock_may_be_available($name) {
34  return TRUE;
35}
36
37/**
38 * Wait for a lock to be available.
39 *
40 * @return
41 *   TRUE if the lock holds, FALSE if it is available.
42 */
43function lock_wait($name, $delay = 30) {
44  return FALSE;
45}
46
47/**
48 * Release a lock previously acquired by lock_acquire().
49 *
50 * This will release the named lock if it is still held by the current request.
51 *
52 * @param $name
53 *   The name of the lock.
54 */
55function lock_release($name) {
56}
57
58/**
59 * Release all previously acquired locks.
60 */
61function lock_release_all($lock_id = NULL) {
62}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.