blib/lib/Linux/Epoll.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 11 | 11 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 15 | 15 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Linux::Epoll; | ||||||
2 | $Linux::Epoll::VERSION = '0.018'; | ||||||
3 | 1 | 1 | 79374 | use 5.010; | |||
1 | 5 | ||||||
4 | 1 | 1 | 6 | use strict; | |||
1 | 2 | ||||||
1 | 23 | ||||||
5 | 1 | 1 | 8 | use warnings FATAL => 'all'; | |||
1 | 1 | ||||||
1 | 41 | ||||||
6 | |||||||
7 | 1 | 1 | 520 | use parent 'IO::Handle'; | |||
1 | 304 | ||||||
1 | 6 | ||||||
8 | |||||||
9 | XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION); | ||||||
10 | |||||||
11 | 1; | ||||||
12 | |||||||
13 | #ABSTRACT: O(1) multiplexing for Linux | ||||||
14 | |||||||
15 | __END__ |