Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^4: Terminating a parallel process opened with "system(..)"

by palkia (Monk)
on Jun 03, 2012 at 22:05 UTC ( [id://974194]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Terminating a parallel process opened with "system(..)"
in thread Terminating a parallel process opened with "system(..)"

Thank you very much, it works gr8.

One followup question if you don't mind:
Should I be worried about zombie process resulting from this "kill" ? (I really can't pull off the bite marks look)
Would substituting the kill 9, $pid; for while(kill 9, $pid){} or while(kill 9, $pid){sleep 1;}
would prevent zombies / decrease the chance for zombies / none of the above ?
Other / better techniques ?
Thx

Replies are listed 'Best First'.
Re^5: Terminating a parallel process opened with "system(..)"
by BrowserUk (Patriarch) on Jun 03, 2012 at 22:31 UTC

    Windows doesn't do zombie processes.

    However, perl attempts to emulate the ability to retrieve the exit code from child processes by storing them within the parent, from where they can be retrieved using wait and $? or waitpid.

    A side effect of this is that you can only start 64 child processes before you must free up slots in a perl internal structure by calling one of wait or waitpid. If you are starting less than 64 processes, you can happily and economically ignore this caveat.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

    The start of some sanity?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-04-19 15:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found