field_cron()
Implements hook_cron().
Purges some deleted Field API data, if any exists.
drupal/modules/field/field.module, line 373
<?php function field_cron() { $limit = variable_get('field_purge_batch_size', 10); field_purge_batch($limit); } ?>