function background_process_restart in Background Process 7
Same name and namespace in other branches
- 8 background_process.module \background_process_restart()
- 6 background_process.module \background_process_restart()
- 7.2 background_process.module \background_process_restart()
Restart the current background process.
Throws
Exception Exception on fail, otherwise exit
File
- ./background_process.module, line 626 
Code
function background_process_restart() {
  $args = func_get_args();
  call_user_func_array('background_process_keepalive', $args);
  exit;
}