| Cache-FastMmap documentation | Contained in the Cache-FastMmap distribution. |
Cache::FastMmap::CImpl - C code implementation for Cache::FastMmap
Do not use this directly. Cache::FastMmap uses this
Rob Mueller <cpan@robm.fastmail.fm>
Copyright (C) 2003-2010 by The FastMail Partnership
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__