| POE-XS-Loop-EPoll documentation | Contained in the POE-XS-Loop-EPoll distribution. |
POE::XS::Loop::EPoll - an XS implementation of POE::Loop, using Linux` epoll(2).
use POE::Kernel { loop => 'POE::XS::Loop::EPoll' };
This class is an implementation of the abstract POE::Loop interface written in C using the Linux epoll(2) family of system calls.
Signals are left to POE::Loop::PerlSignals.
The epoll_ctl() call returns an error when you attempt to poll regular files, POE::XS::Loop::EPoll emulate's poll(2)'s behaviour with regular files under Linux - ie. they're always readable/writeable.
If you see an error:
POE::XS::Loop::EPoll hasn't been initialized correctly
then the loop hasn't been loaded correctly, in POE <= 1.287 the following:
# this doesn't work use POE qw(XS::Loop::EPoll);
will not load the loop correctly, you will need to do:
use POE::Kernel { loop => 'POE::XS::Loop::EPoll' };
use POE;
POE, POE::Loop, POE::XS::Loop::Poll.
Relies upon small fd numbers, but then a lot of code does.
POE::XS::Loop::EPoll is licensed under the same terms as Perl itself.
Tony Cook <tonyc@cpan.org>
sub skip_tests { $ENV{POE_EVENT_LOOP} = 'POE::XS::Loop::EPoll'; return; }
| POE-XS-Loop-EPoll documentation | Contained in the POE-XS-Loop-EPoll distribution. |
package POE::XS::Loop::EPoll; use strict; use vars qw(@ISA $VERSION); BEGIN { unless (defined &POE::Kernel::TRACE_CALLS) { # we ignore TRACE_DEFAULT, since it's not really standard POE and it's # noisy *POE::Kernel::TRACE_CALLS = sub () { 0 }; } $VERSION = '1.001'; eval { # try XSLoader first, DynaLoader has annoying baggage require XSLoader; XSLoader::load('POE::XS::Loop::EPoll' => $VERSION); 1; } or do { require DynaLoader; push @ISA, 'DynaLoader'; bootstrap POE::XS::Loop::EPoll $VERSION; } } require POE::Loop::PerlSignals; if ((POE::Kernel::TRACE_FILES() || POE::Kernel::TRACE_EVENTS()) && !tracing_enabled()) { print POE::Kernel::TRACE_FILE "<xx> ", __PACKAGE__, " was built without tracing enabled, build with perl Makefile.PL --trace to enable tracing\n"; } # everything else is XS 1; __END__