UPDATE: Ok, got it fixed. Shoud be $kid = waitpid(-1,0). I quite don't understand how it matches the correct PID, but this seems to be working.

I'm having problems with the execution and fork. Probably as I have never used it before. So is this correct way to use it? Where does the waitpid go and how does it work? How the program flow go from here?
#!/usr/bin/perl # # Wrapper takes is the arguments of the blastall binary # changes directory to binarys directory # adds binary name # runs it # Needs to be able to trap normal signals and definedly kill the proce +ss, # as it ignores some which it should not. # use warnings; use strict; use File::Basename; use sigtrap qw(handler catch_signal normal-signals); my $pid; # blastalls pid after fork sub catch_signal { print STDERR "SIGNAL:",shift," blast should be $pid\n"; kill (9,$pid); exit; } print "Going\n"; my $dir=dirname($0); chdir $dir; unshift (@ARGV,"./blastall"); $pid = fork; die "Can't fork: $!\n" unless defined $pid; if ($pid) { # Parent. Do whatever you want print "In parent.\n"; my $kid=0; do { waitpid ($pid,0); } until ($kid == -1); } else { # Child print "In child.\n"; exec (@ARGV) or die "Unable to exec: $!"; } print "After fork if.\n"; # this was used after `@ARGV` to get error message if executing failed # if ($?!=0) { # warn "@ARGV failed: ",$?,":",$?>>8,"\n"; # exit $?; # } print "Exiting.\n"; exit;

In reply to Re^2: How to get child pid from backtics by Hena
in thread How to get child pid from backtics by Hena

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.