The hook_cron_post_execute_FUNCTION(&$hook) is invoked just after running the cron function.

Example

Log that node_cron is done

function hook_cron_post_execute_node_cron($function, &$hook) {
  error_log('node_cron is done');
}