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

Changelog

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

  * Team upload

  [ Salvatore Bonaccorso ]
  * debian/copyright: Replace DEP5 Format-Specification URL from
    svn.debian.org to anonscm.debian.org URL.

  [ Maximilian Gass ]
  * New upstream release
  * Remove useless README
  * Update copyright format
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  17 Oct 2011 11:11:16 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
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

Downloads

File Size SHA-256 Checksum
libsys-mmap-perl_0.16.orig.tar.gz 16.0 KiB 36a637e78568762bd25e69df3c0671f79c9ddf48835f5460b4404303e1801c79
libsys-mmap-perl_0.16-1.debian.tar.gz 1.8 KiB 962533f87167c5078c2ae3b8b0eb157fba0f20a33dea0525e5d0aaaafe60597b
libsys-mmap-perl_0.16-1.dsc 1.9 KiB b3deb0fe3cba1409bb7ee8067361928e80df0ec131e5bda89ba21f4bede33180

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.