diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-20 11:53:28 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-20 11:53:28 +0000 |
commit | 683016273e3c5a7a0e27dc7cd0161b2925a81ab2 (patch) | |
tree | fb7b020cb2ab9452ece1dea251b2eb613531d275 /ext/Errno | |
parent | 4ba05bdca841ced94aa583a51f92e8ba338c00d2 (diff) | |
download | perl-683016273e3c5a7a0e27dc7cd0161b2925a81ab2.tar.gz |
mention portability caveat about C<use Errno 'EFOO'>
p4raw-id: //depot/perl@5160
Diffstat (limited to 'ext/Errno')
-rw-r--r-- | ext/Errno/Errno_pm.PL | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL index adf8902cc3..e81afb24ce 100644 --- a/ext/Errno/Errno_pm.PL +++ b/ext/Errno/Errno_pm.PL @@ -231,11 +231,13 @@ sub TIEHASH { bless [] } sub FETCH { my ($self, $errname) = @_; my $proto = prototype("Errno::$errname"); + my $errno = ""; if (defined($proto) && $proto eq "") { no strict 'refs'; - return $! == &$errname; + $errno = &$errname; + $errno = 0 unless $! == $errno; } - return ""; + return $errno; } sub STORE { @@ -256,7 +258,7 @@ sub NEXTKEY { } sub FIRSTKEY { - my $s = scalar keys %Errno::; + my $s = scalar keys %Errno::; # initialize iterator goto &NEXTKEY; } @@ -286,7 +288,7 @@ defined in your system C<errno.h> include file. It has a single export tag, C<:POSIX>, which will export all POSIX defined error numbers. C<Errno> also makes C<%!> magic such that each element of C<%!> has a -non-zero value only if C<$!> is set to that value, eg +non-zero value only if C<$!> is set to that value. For example: use Errno; @@ -298,10 +300,20 @@ non-zero value only if C<$!> is set to that value, eg } } -If a specified constant C<EFOO> doesn't exist on the system, C<$!{EFOO}> -has a false value. You may use C<exists $!{EFOO}> to check whether the +If a specified constant C<EFOO> does not exist on the system, C<$!{EFOO}> +returns C<"">. You may use C<exists $!{EFOO}> to check whether the constant is available on the system. +=head1 CAVEATS + +Importing a particular constant may not be very portable, because the +import will fail on platforms that do not have that constant. A more +portable way to set C<$!> to a valid value is to use: + + if (exists &Errno::EFOO) { + $! = &Errno::EFOO; + } + =head1 AUTHOR Graham Barr <gbarr@pobox.com> |