function system_test_lock_acquire
7.x system_test.module | system_test_lock_acquire() |
Try to acquire a named lock and report the outcome.
2 string references to 'system_test_lock_acquire'
- LockFunctionalTest::testLockAcquire in drupal-7.x/
modules/ simpletest/ tests/ lock.test - Confirm that we can acquire and release locks in two parallel requests.
- system_test_menu in drupal-7.x/
modules/ simpletest/ tests/ system_test.module - Implements hook_menu().
File
- drupal-7.x/
modules/ simpletest/ tests/ system_test.module, line 283
Code
function system_test_lock_acquire() {
if (lock_acquire('system_test_lock_acquire')) {
lock_release('system_test_lock_acquire');
return 'TRUE: Lock successfully acquired in system_test_lock_acquire()';
}
else {
return 'FALSE: Lock not acquired in system_test_lock_acquire()';
}
}