Skip Menu |

This queue is for tickets about the IO-Async-Loop-Mojo CPAN distribution.

Report information
The Basics
Id: 128591
Status: new
Priority: 0/
Queue: IO-Async-Loop-Mojo

People
Owner: Nobody in particular
Requestors: leonerd-cpan [...] leonerd.org.uk
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.05
Fixed in: (no value)



Subject: Doesn't handle signals
$ perl -MIO::Async::Loop::Mojo -E'my $loop = IO::Async::Loop::Mojo->new; $loop->watch_signal(INT => sub { say "Got SIGINT" }); $loop->run' ^C^C^C^C As compared $ perl -MIO::Async::Loop::Epoll -E'my $loop = IO::Async::Loop::Epoll->new; $loop->watch_signal(INT => sub { say "Got SIGINT" }); $loop->run' ^CGot SIGINT ^CGot SIGINT ^CGot SIGINT ^CGot SIGINT -- Paul Evans