Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^4: Backticks and SIGALRM

by nemo (Sexton)
on Aug 20, 2007 at 17:08 UTC ( [id://633874]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Backticks and SIGALRM
in thread Backticks and SIGALRM

The only problem I had with your code was the sleep delay was too long. :) The script was executing over tens of thousands of files so in the end I used the implementation below.
sub executeTimed{ my $cmd = shift; $|++; my @results :shared; my $pid :shared; async { $pid = open my $fh, "$cmd |" or die "$!, $^E"; @results = <$fh>; }->detach; select(undef, undef, undef, 0.08); my $test = kill (0, $pid); if($test){ kill (3, $pid); push(@results, "Function timed out."); } return pop(@results); }
Thanks again for all replies.
I was looking to use default active state perl package and was unsure if ipc-run would execute.

Nemo

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://633874]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-26 01:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found