/usr/lib64/perl5/auto/Storable
NameSizeModeActions
.packlist1800644editdlrm
autosplit.ix5190644editdlrm
BIN_VERSION_NV.al3480644editdlrm
BIN_WRITE_VERSION_NV.al3720644editdlrm
CAN_FLOCK.al5550644editdlrm
fd_retrieve.al6730644editdlrm
file_magic.al6030644editdlrm
freeze.al4010644editdlrm
lock_nstore.al4100644editdlrm
lock_retrieve.al3870644editdlrm
lock_store.al4010644editdlrm
logcarp.al2950644editdlrm
logcroak.al4380644editdlrm
nfreeze.al3610644editdlrm
nstore.al3660644editdlrm
nstore_fd.al4060644editdlrm
read_magic.al18310644editdlrm
retrieve.al4160644editdlrm
show_file_magic.al8010644editdlrm
Storable.so859360755editdlrm
store.al5420644editdlrm
store_fd.al4480644editdlrm
thaw.al6650644editdlrm
_freeze.al7060644editdlrm
_retrieve.al9090644editdlrm
_store.al13280644editdlrm
_store_fd.al9010644editdlrm
Edit: /usr/lib64/perl5/auto/Storable/_retrieve.al (909B)
# NOTE: Derived from ../../lib/Storable.pm. # Changes made here will be lost when autosplit is run again. # See AutoSplit.pm. package Storable; #line 364 "../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_retrieve.al)" # Internal retrieve routine sub _retrieve { my ($file, $use_locking) = @_; local *FILE; open(FILE, $file) || logcroak "can't open $file: $!"; binmode FILE; # Archaic systems... my $self; my $da = $@; # Could be from exception handler if ($use_locking) { unless (&CAN_FLOCK) { logcarp "Storable::lock_store: fcntl/flock emulation broken on $^O"; return undef; } flock(FILE, LOCK_SH) || logcroak "can't get shared lock on $file: $!"; # Unlocking will happen when FILE is closed } eval { $self = pretrieve(*FILE) }; # Call C routine close(FILE); logcroak $@ if $@ =~ s/\.?\n$/,/; $@ = $da; return $self; } # end of Storable::_retrieve 1;