libcoro-perl 6.310-1build1 source package in Ubuntu

Changelog

libcoro-perl (6.310-1build1) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Tue, 22 Oct 2013 09:51:01 +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

Downloads

File Size SHA-256 Checksum
libcoro-perl_6.310.orig.tar.gz 180.9 KiB a73ace48d940b28e3dfb32d2f3507205d3ddfdc6610075ecc72e19476bb6de44
libcoro-perl_6.310-1build1.debian.tar.gz 7.4 KiB 97349dac3769d472154b210959e203f280ef78881ad7204351f53d72fd1276ca
libcoro-perl_6.310-1build1.dsc 2.2 KiB 411ab7110c7717cbfc92a72d0298d3cd6263329cf401fcd578e3365a2698853a

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.