Paketname | libasync-interrupt-perl |
Beschreibung | module to allow C/XS libraries to interrupt perl |
Archiv/Repository | Offizielles Debian Archiv squeeze (main) |
Version | 1.05-1 |
Sektion | perl |
Priorität | optional |
Installierte Größe | 140 Byte |
Hängt ab von | perl (>= 5.10.1-12), perlapi-5.10.1, libc6 (>= 2.7), libcommon-sense-perl |
Empfohlene Pakete | |
Paketbetreuer | Debian Perl Group |
Quelle | |
Paketgröße | 36948 Byte |
Prüfsumme MD5 | d5b9924a2412d09f7df21d3f709bcd95 |
Prüfsumme SHA1 | b81921275fe38356cd6dc5e42761299aa1bba291 |
Prüfsumme SHA256 | 284423ce56c1190c3cace10741b72d876271801e9312b367309500ef31bcabab |
Link zum Herunterladen | libasync-interrupt-perl_1.05-1_i386.deb |
Ausführliche Beschreibung | 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.
|