function memcache_test_lock_exit in Zircon Profile 8
Same name and namespace in other branches
- 8.0 modules/memcache/tests/memcache_test.module \memcache_test_lock_exit()
Try to acquire a specific lock, and then exit.
2 string references to 'memcache_test_lock_exit'
- MemcacheLockFunctionalTest::testLockAcquire in modules/
memcache/ tests/ memcache-lock.test - Confirm that we can acquire and release locks in two parallel requests.
- memcache_test_menu in modules/
memcache/ tests/ memcache_test.module - Implements hook_menu().
File
- modules/
memcache/ tests/ memcache_test.module, line 79
Code
function memcache_test_lock_exit() {
if (lock_acquire('memcache_test_lock_exit', 900)) {
echo 'TRUE: Lock successfully acquired in memcache_test_lock_exit()';
// The shut-down function should release the lock.
exit;
}
else {
return 'FALSE: Lock not acquired in memcache_test_lock_exit()';
}
}