summaryrefslogtreecommitdiff
path: root/pod/perlvar.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-09-23 17:21:33 -0600
committerKarl Williamson <khw@cpan.org>2020-09-28 22:55:11 -0600
commitf2febc77e262f8eeeb62843c90aecd6850631378 (patch)
treeb32b60a6c081a60ff4c3fa1cbf78015da9a1dad2 /pod/perlvar.pod
parentfa3e44c077453c62ee28e8ac1478452f838a258d (diff)
downloadperl-f2febc77e262f8eeeb62843c90aecd6850631378.tar.gz
perlvar: Remove mention of WIFCONTINUED
This is not supported.
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r--pod/perlvar.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod
index 0fd9e9aea8..33157b8722 100644
--- a/pod/perlvar.pod
+++ b/pod/perlvar.pod
@@ -1807,8 +1807,8 @@ X<$^CHILD_ERROR_NATIVE>
The native status returned by the last pipe close, backtick (C<``>)
command, successful call to C<wait()> or C<waitpid()>, or from the
C<system()> operator. On POSIX-like systems this value can be decoded
-with the WIFEXITED, WEXITSTATUS, WIFSIGNALED, WTERMSIG, WIFSTOPPED,
-WSTOPSIG and WIFCONTINUED functions provided by the L<POSIX> module.
+with the WIFEXITED, WEXITSTATUS, WIFSIGNALED, WTERMSIG, WIFSTOPPED, and
+WSTOPSIG functions provided by the L<POSIX> module.
Under VMS this reflects the actual VMS exit status; i.e. it is the
same as C<$?> when the pragma C<use vmsish 'status'> is in effect.