The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

reaper - support for reaping child processes via $SIG{CHLD}

SYNOPSIS

  use reaper qw( reaper reapPid pidStatus );

  my $pid = fork;
  if ( $pid == 0 ) { # child
    exec $some_command;
  }
  reapPid ( $pid );

  ...

  if ( defined(my $exit = pidStatus($pid)) ) {
    # child exited, check the code...
  }

DESCRIPTION

reaper is just a backwards-compatibility wrapper for Reaper -- turns out that only 'pragmas' are supposed to be named in lower case, so I renamed reaper to Reaper. But existing code contains 'use reaper', so this allows such code to work without changes.

AUTHOR

Jeremy Slade <jeremy@jkslade.net>

SEE ALSO

Reaper

1 POD Error

The following errors were encountered while parsing the POD:

Around line 53:

=back without =over