File: control

package info (click to toggle)
libasync-interrupt-perl 1.20-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 208 kB
  • ctags: 233
  • sloc: ansic: 932; perl: 103; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,596 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Source: libasync-interrupt-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonathan Yu <jawnsy@cpan.org>,
           Fabrizio Regalli <fabreg@fabreg.it>,
           Jotam Jr. Trejo <jotamjr@debian.org.sv>
Section: perl
Priority: optional
Build-Depends: perl,
               debhelper (>= 9.20120312~),
               libcommon-sense-perl
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libasync-interrupt-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libasync-interrupt-perl.git
Homepage: https://metacpan.org/release/Async-Interrupt

Package: libasync-interrupt-perl
Architecture: any
Depends: ${perl:Depends},
         ${shlibs:Depends},
         ${misc:Depends},
         libcommon-sense-perl
Description: 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.