Select an installed module below |
NAMEErrno - System errno constants
SYNOPSIS
use Errno qw(EINTR EIO :POSIX);
DESCRIPTION
use Errno;
unless (open(FH, "/fangorn/spouse")) {
if ($!{ENOENT}) {
warn "Get a wife!\n";
} else {
warn "This path is barred: $!";
}
}
If a specified constant
CAVEATSImporting 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
if (exists &Errno::EFOO) {
$! = &Errno::EFOO;
}
AUTHORGraham Barr <gbarr@pobox.com>
COPYRIGHTCopyright (c) 1997-8 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
|