libsys-mmap-perl 0.16-1build1 source package in Ubuntu

Changelog

libsys-mmap-perl (0.16-1build1) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Tue, 15 Nov 2011 20:15:00 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Precise
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Downloads

File Size SHA-256 Checksum
libsys-mmap-perl_0.16.orig.tar.gz 16.0 KiB 36a637e78568762bd25e69df3c0671f79c9ddf48835f5460b4404303e1801c79
libsys-mmap-perl_0.16-1build1.debian.tar.gz 1.9 KiB 23d2c48b3fb0999c388f1125250dbd96689a0e0e8ce3fdddbba903891f66f9d3
libsys-mmap-perl_0.16-1build1.dsc 2.0 KiB cae11f6baf20a8eac15e41dff86c33cd2df484a8d71e2712c7c2b8050e3ae3a2

Available diffs

View changes file

Binary packages built by this source

libsys-mmap-perl: module for using POSIX mmap

 The Mmap module uses the POSIX mmap call to map in a file as a Perl variable.
 Memory access by mmap may be shared between threads or forked processes, and
 may be a disc file that has been mapped into memory. Sys::Mmap depends on
 your operating system supporting UNIX or POSIX.1b mmap, of course.
 .
 Note that PerlIO now defines a :mmap tag and presents mmap'd files as regular
 files, if that is your cup of joe.
 .
 Several processes may share one copy of the file or string, saving memory,
 and concurrently making changes to portions of the file or string. When not
 used with a file, it is an alternative to SysV shared memory. Unlike SysV
 shared memory, there are no arbitrary size limits on the shared memory area,
 and sparce memory usage is handled optimally on most modern UNIX
 implementations.