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