Help for this page

Select Code to Download


  1. or download this
      $pid = fork;
    
  2. or download this
          eval {
            alarm $timeout;
            $result = `$solver $file`;
            waitpid($pid, 0);
          };
    
  3. or download this
    my $pid = fork();
    die "failed to fork" unless defined $pid;
    ...
    } else {
      # we are child. do other things
    }