libforks-perl 0.34-1build3 source package in Ubuntu

Changelog

libforks-perl (0.34-1build3) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Tue, 22 Oct 2013 09:53:05 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe perl

Downloads

File Size SHA-256 Checksum
libforks-perl_0.34.orig.tar.gz 109.5 KiB afbcdc26d901c01a9739b648d07ff46761839611e0691409d863cfab1589b5f4
libforks-perl_0.34-1build3.debian.tar.gz 3.4 KiB de72e52f9a2303e99a474eed89f9f238b1d19d975fbb5c69a7c09cb5e6416ce5
libforks-perl_0.34-1build3.dsc 2.2 KiB cad524677d069b9fe861d64bc8e45cc82c558c91b6d1a7d3c9ae72f7135c707b

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).