| 5 common.inc | drupal_cron_cleanup() |
| 6 common.inc | drupal_cron_cleanup() |
| 7 common.inc | drupal_cron_cleanup() |
| 8 common.inc | drupal_cron_cleanup() |
Shutdown function: Performs cron cleanup.
See also
drupal_register_shutdown_function()
1 string reference to 'drupal_cron_cleanup'
File
- includes/
common.inc, line 5186 - Common functions that many Drupal modules will need to reference.
Code
function drupal_cron_cleanup() {
// See if the semaphore is still locked.
if (variable_get('cron_semaphore', FALSE)) {
watchdog('cron', 'Cron run exceeded the time limit and was aborted.', array(), WATCHDOG_WARNING);
// Release cron semaphore.
variable_del('cron_semaphore');
}
}
Login or register to post comments