libasync-interrupt-perl 1.10-1build1 source package in Ubuntu

Changelog

libasync-interrupt-perl (1.10-1build1) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 11:35:36 +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
libasync-interrupt-perl_1.10.orig.tar.gz 29.9 KiB 820d10155f2ddd9bc9b477f1c36a70eb6c88f97731e6afad8b828d91f5e17962
libasync-interrupt-perl_1.10-1build1.debian.tar.gz 2.6 KiB ecf6e63e7a67b7f0d7b3e9ba82ccb962febf6dbfb4331eec4e6594138d77a65c
libasync-interrupt-perl_1.10-1build1.dsc 2.2 KiB a70ea9b735238d2dc89c50ce7fd45be164acc30415241d0431eec7d2d24a4d41

Available diffs

View changes file

Binary packages built by this source

libasync-interrupt-perl: module to allow C/XS libraries to interrupt perl

 Async::Interrupt is a Perl module that implements asynchronous interruptions,
 similar in nature to UNIX signals, in a cross-platform manner. Modules might
 want to run code asynchronously (in another thread or from a signal handler)
 and then signal the interpreter on certain events. One common way is to write
 data to a pipe and use an event handling toolkit to watch for I/O events.
 Another way is to send a signal. Those methods are slow, and in the case of a
 pipe, also not asynchronous - it won't interrupt a running Perl interpreter.
 .
 This module implements asynchronous notifications that enable you to signal
 running Perl code from another thread, asynchronously, and sometimes even
 without using a single syscall.