Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
What I really want to do is call B from another Perl script A, and A kills B (with system("kill PID") or whatever), thereby killing C as well.

One way to do that is to localize the HUP signal handler and then send a HUP signal to your process group. You can have A do

{ local $SIG{HUP} = 'IGNORE'; kill HUP => -$$; }

I've attached a proof of concept demo. Sorry there's no backport, I got lazy once I had it working.

a.pl
#!/opt/perl/bin/perl use 5.012; use warnings; say "A start"; my $pid; unless ( $pid = fork ) { die "cannot fork: $!" unless defined $pid; system("./b.pl"); sleep 30; exit; } sleep 2; say "A sending kill HUP -$$"; { local $SIG{HUP} = 'IGNORE'; kill HUP => -$$; } say "A waiting for lost children"; while (1) { my $kid = waitpid -1, 0; $kid == -1 and last; say "A reaped child $kid"; } say "A end";
b.pl
#!/opt/perl/bin/perl use 5.012; use warnings; say " B start"; my $pid; unless ($pid = fork) { die "cannot fork: $!" unless defined $pid; system("./c.pl"); sleep 30; exit; } say " B waiting on lost children"; while (1) { my $kid = waitpid -1, 0; $kid == -1 and last; say " B reaped child $kid"; } sleep 30; say " B end";
c.pl
#!/opt/perl/bin/perl use 5.012; use warnings; say " C start"; sleep 30; say " C exit";
output
$ ./a.pl A start B start B waiting on lost children C start A sending kill HUP -20682 A waiting for lost children A reaped child 20683 A end

In reply to Re: Stopping subprocesses by rowdog
in thread Stopping subprocesses by James Board

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-25 05:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found