Skip to content

Commit

Permalink
the canonical order is « exit, signal, core »
Browse files Browse the repository at this point in the history
  • Loading branch information
book committed Sep 17, 2015
1 parent e07b26e commit d568e4c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/System/Command.pm
Original file line number Diff line number Diff line change
Expand Up @@ -540,14 +540,14 @@ a value if the process just finished):
The exit status of the underlying command.
=item core
A boolean value indicating if the command dumped core.
=item signal
The signal, if any, that killed the command.
=item core
A boolean value indicating if the command dumped core.
=back
Even when not having a reference to the System::Command object any more,
Expand All @@ -567,8 +567,8 @@ code (or any module you C<use>) does something like the following:
local $SIG{CHLD} = 'IGNORE'; # reap child processes
System::Command will not be able to capture the C<exit>, C<core>
and C<signal> attributes. It will instead set all of them to the
System::Command will not be able to capture the C<exit>, C<signal>
and C<core> attributes. It will instead set all of them to the
impossible value C<-1>, and display the warning
C<Child process already reaped, check for a SIGCHLD handler>.
Expand Down

0 comments on commit d568e4c

Please sign in to comment.