libasync-interrupt-perl 1.21-1 source package in Ubuntu
Changelog
libasync-interrupt-perl (1.21-1) unstable; urgency=medium * Team upload. [ Salvatore Bonaccorso ] * Update Vcs-Browser URL to cgit web frontend [ Lucas Kanashiro ] * Add debian/upstream/metadata * Import upstream version 1.21 * Declare compliance with Debian policy 3.9.6 * Add autopkgtest-pkg-perl * Fix perl path in lintian.override * Update upstream copyright -- Lucas Kanashiro <email address hidden> Sat, 08 Aug 2015 18:51:15 -0300
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- any
- Section:
- perl
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libasync-interrupt-perl_1.21-1.dsc | 2.3 KiB | abdee8fee67b25a3a5f82e762232bb60b6ed55a1b6ba8d5f3eae2290b2c56bf0 |
libasync-interrupt-perl_1.21.orig.tar.gz | 33.1 KiB | 63dec7c95a4c41cf1e60847068c7850ff3e7b04d02fdc11208183971d6d15f24 |
libasync-interrupt-perl_1.21-1.debian.tar.xz | 3.5 KiB | 509c801bb3341ec9111555eaecb5b3b23fae790c8fa96c869711cdbfd3784b48 |
Available diffs
No changes file available.
Binary packages built by this source
- libasync-interrupt-perl: No summary available for libasync-interrupt-perl in ubuntu wily.
No description available for libasync-
interrupt- perl in ubuntu wily.
- 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.