drupal_cron_cleanup

Definition

drupal_cron_cleanup()
drupal/includes/common.inc, line 3052

Description

Shutdown function for cron cleanup.

Related topics

Namesort iconDescription
Input validationFunctions to validate user input.

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');
  }
}