http://qs321.pair.com?node_id=324187


in reply to Timeout on script

Here's something to start off with. Note that it's not finished and only tested with one trivial example.
package Timed; use strict; use warnings; use Exporter (); our @ISA = qw /Exporter/; our @EXPORT = qw /timed_system/; sub timed_system { my $time = shift; my $pid; local $SIG {ALRM} = sub {kill 15, $pid or die "kill: $!"; die "Timeout!"}; # Just SIGTERM. eval { $pid = fork; die "Fork failed: $!" unless defined $pid; unless ($pid) { exec @_; die "Exec failed: $!"; } alarm $time; waitpid $pid => 0; }; die $@ if $@ && $@ !~ /^Timeout!/; } 1;

Abigail

Replies are listed 'Best First'.
Re: Re: Timeout on script
by hotshot (Prior) on Jan 27, 2004 at 06:39 UTC
    Thanks for the post, but do you know where I can get an example for the fork-exec solution, since in perlipc manual pages they mentioned that using eval-die can leave zombies and I would like to avoid that.

    Thanks
      Thanks for the post, but do you know where I can get an example for the fork-exec solution,
      Did you actually bother to look at the code I posted?
      They mentioned that using eval-die can leave zombies
      As I said, the code I posted hasn't been finished yet. Work on it.

      Abigail

        Just a thought, if they suggested to use fork/exec there, why trying to sophisticate the eval/die solution, are there any advantages doing so, or is it the same effort?