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