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($function, &$hook) {
  if ($function == 'node_cron') {
    error_log('node_cron is done');
  }
}