You are here

function background_process_restart in Background Process 8

Same name and namespace in other branches
  1. 6 background_process.module \background_process_restart()
  2. 7.2 background_process.module \background_process_restart()
  3. 7 background_process.module \background_process_restart()

Implements to Restart the current background process.

File

./background_process.module, line 508
This module implements a framework for calling funtions in the background.

Code

function background_process_restart() {
  $args = func_get_args();
  call_user_func_array('background_process_keepalive', $args);
  exit;
}