Cache::FastMmap::CImpl - C code implementation for Cache::FastMmap


Cache-FastMmap documentation Contained in the Cache-FastMmap distribution.

Index


Code Index:

NAME

Top

Cache::FastMmap::CImpl - C code implementation for Cache::FastMmap

SYNOPSIS

Top

Do not use this directly. Cache::FastMmap uses this

AUTHOR

Top

Rob Mueller <cpan@robm.fastmail.fm>

COPYRIGHT AND LICENSE

Top


Cache-FastMmap documentation Contained in the Cache-FastMmap distribution.
package Cache::FastMmap::CImpl;

# Modules/Export/XSLoader {{{
use 5.006;
use strict;
use warnings;

our $VERSION = '1.36';

require XSLoader;
XSLoader::load('Cache::FastMmap::CImpl', $VERSION);
# }}}

sub DESTROY {
  my $Self = shift;

  # Close any file before destruction
  $Self->fc_close();
}

1;

__END__