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

Changelog

libasync-interrupt-perl (1.21-1build1) xenial; urgency=medium

  * Rebuild for Perl 5.22.1.

 -- Colin Watson <email address hidden>  Fri, 18 Dec 2015 03:42:14 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release universe perl

Downloads

File Size SHA-256 Checksum
libasync-interrupt-perl_1.21.orig.tar.gz 33.1 KiB 63dec7c95a4c41cf1e60847068c7850ff3e7b04d02fdc11208183971d6d15f24
libasync-interrupt-perl_1.21-1build1.debian.tar.xz 3.6 KiB daaae22618c6f2ace339442e79268b1d2b97a7d5c5bbdcdbd12965fbe687648b
libasync-interrupt-perl_1.21-1build1.dsc 2.2 KiB 0c77d72bf34605284056bba855a85be7794165c269c4f81a5fca9397b5f5fb8a

Available diffs

View changes file

Binary packages built by this source

libasync-interrupt-perl: No summary available for libasync-interrupt-perl in ubuntu zesty.

No description available for libasync-interrupt-perl in ubuntu zesty.

libasync-interrupt-perl-dbgsym: debug symbols for package libasync-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.