Help for this page

Select Code to Download


  1. or download this
    my $pid = fork();
    if ($pid == 0) {
    ...
         exit;
    }
    
  2. or download this
    my $attempt = kill('INT', $pid_of_child_process);