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.017';
3 2     2   250688 use 5.006;
  2         8  
4              
5 2     2   11 use strict;
  2         14  
  2         72  
6 2     2   11 use warnings;
  2         4  
  2         134  
7              
8 2     2   11 use Exporter 5.57 'import';
  2         60  
  2         132  
9             our @EXPORT_OK = qw/eventfd signalfd timerfd/;
10              
11 2     2   13 use XSLoader;
  2         10  
  2         119  
12             XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION);
13              
14             1;
15              
16             #ABSTRACT: Linux specific special filehandles
17              
18             __END__