Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: automatically killing all child processes created in a script

by doom (Deacon)
on Aug 22, 2009 at 03:05 UTC ( [id://790521]=note: print w/replies, xml ) Need Help??


in reply to automatically killing all child processes created in a script

This is probably not The Right Way, but I had the thought the other day that one way to deal with this sort of problem is to run the child processes under fictitious names that include a label to identify the parent. So, for example, you might run httpd as "httpd_by_$$", then you could grep through the process list for "by_$$" to find pids you want to zap.

Note: if you're using the list form of exec or system, the first entry in the list is the name that appears in the process listing, as opposed to the actual name of the program you're launching. Here's a somewhat hacky proof-of-concept (single child case):

my $progname = 'emacs'; my $label = "_by_" . $$; my $proglabel = $progname . $label; my @args = ( $0 ); if ( my $pid = fork ) { # this is parent code # pause, then zap the child sleep 10; my @lines = grep{ m/$label/ } qx{ ps axw }; my @pids = map{ ( split " ", $_ )[0] } @lines; foreach my $pid ( @pids ) { my $status = kill 1, $pid; ($DEBUG) && print STDERR "Tried to kill (1) pid $pid, status: $sta +tus \n"; } } else { # this is child code die "cannot fork: $!" unless defined $pid; exec { $progname } ( $proglabel, @args ); }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-20 04:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found