diff options
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl593delta.pod | 3 | ||||
-rw-r--r-- | pod/perlfunc.pod | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/pod/perl593delta.pod b/pod/perl593delta.pod index be27bd3319..7d75352818 100644 --- a/pod/perl593delta.pod +++ b/pod/perl593delta.pod @@ -10,9 +10,6 @@ L<perl592delta> for the differences between 5.8.0 and 5.9.2. =head1 Incompatible Changes -The 4-argument form of select() now returns C<undef> on error (instead of --1). - =head1 Core Enhancements =head1 Modules and Pragmata diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 2d6c40cae8..8054abb6eb 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -4673,7 +4673,8 @@ Note that whether C<select> gets restarted after signals (say, SIGALRM) is implementation-dependent. See also L<perlport> for notes on the portability of C<select>. -On error, C<select> returns C<undef> and sets C<$!>. +On error, C<select> behaves like the select(2) system call : it returns +-1 and sets C<$!>. Note: on some Unixes, the select(2) system call may report a socket file descriptor as "ready for reading", when actually no data is available, |