Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

No child processes

by Jonathan (Curate)
on Sep 13, 2002 at 10:24 UTC ( [id://197500]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Install signal handler for child processes
    $SIG{'CHLD'} = sub { while (waitpid(-1,WNOHANG) > 0) {} };
    
  2. or download this
    my $res = system $cmd, $arg;
    
    unless ($res == 0) {
        ...
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (9)
As of 2024-04-23 08:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found