File Coverage

blib/lib/Linux/FD.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Linux::FD;
2             $Linux::FD::VERSION = '0.014';
3 2     2   154127 use 5.006;
  2         19  
4              
5 2     2   13 use strict;
  2         3  
  2         46  
6 2     2   8 use warnings FATAL => 'all';
  2         5  
  2         92  
7              
8 2     2   1543 use Sub::Exporter -setup => { exports => [qw/eventfd signalfd timerfd/] };
  2         30406  
  2         15  
9              
10 2     2   893 use XSLoader;
  2         5  
  2         95  
11             XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION);
12              
13             1;
14              
15             #ABSTRACT: Linux specific special filehandles
16              
17             __END__