libforks-perl 0.34-1build2 source package in Ubuntu

Changelog

libforks-perl (0.34-1build2) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Tue, 15 Nov 2011 23:54:32 +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
libforks-perl_0.34.orig.tar.gz 109.5 KiB afbcdc26d901c01a9739b648d07ff46761839611e0691409d863cfab1589b5f4
libforks-perl_0.34-1build2.debian.tar.gz 3.4 KiB 1785cea62d9118024c3c6f325b5ec11823f139d0853edc3fb953751c1bdf0768
libforks-perl_0.34-1build2.dsc 2.2 KiB 7bc0ede6349cfc82f19b70ecb32ab2214ce35c8dd49809536aeaf8b1b73faf1e

Available diffs

View changes file

Binary packages built by this source

libforks-perl: Perl module to emulate threads with fork

 The forks.pm module is a drop-in replacement for threads.pm. It has the
 same syntax as the threads.pm module (it even takes over its namespace) but
 has some significant differences:
 .
  - you do _not_ need a special (threaded) version of Perl
  - it is _much_ more economic with memory usage on OS's that support COW
  - it is more efficient in the startup of threads
  - it is slightly less efficient in the stopping of threads
  - it is less efficient in inter-thread communication
 .
 If nothing else, it allows you to use the Perl threading model in
 non-threaded Perl builds and in older versions of Perl (5.6.0 and
 higher are supported).