libcoro-perl 6.050-1ubuntu2 source package in Ubuntu

Changelog

libcoro-perl (6.050-1ubuntu2) precise; urgency=low

  * Rebuild for Perl 5.14.
 -- Colin Watson <email address hidden>   Wed, 16 Nov 2011 09:21:08 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Precise
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libcoro-perl_6.050.orig.tar.gz 173.1 KiB cec96114f752a1f0f2c77127a64f566725f372e8164d8654f08e30c964265819
libcoro-perl_6.050-1ubuntu2.debian.tar.gz 6.4 KiB c7d48b35e8146d1ab20993ea52b160af163355f5d133e2c010e0b633d12440ac
libcoro-perl_6.050-1ubuntu2.dsc 2.3 KiB a2ec819106e3b6fcc976cb3ea2dcc189e01012678ebfb1ebbeab677c4ee77072

Available diffs

View changes file

Binary packages built by this source

libcoro-perl: Perl framework implementing coroutines

 Coro is a collection of modules which manages continuations in general, most
 often in the form of cooperative threads (also called coros, or simply "coro"
 in the documentation). They do not actually execute at the same time, even on
 machines with multiple processors.
 .
 The specific flavor of thread offered by this module also guarantees you that
 it will not switch between threads unless necessary. It switches at easily-
 identified points in your program, so locking and parallel access are rarely
 an issue, making threaded programming much safer and easier than using other
 threading models.
 .
 Coro provides a full shared address space, which makes communication between
 threads very easy. A parallel matrix multiplication benchmark runs over 300
 times faster on a single core than perl's ithreads on a quad core using all
 four cores.