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.013';
3 1     1   70208 use 5.006;
  1         4  
4              
5 1     1   5 use strict;
  1         1  
  1         23  
6 1     1   5 use warnings FATAL => 'all';
  1         1  
  1         43  
7              
8 1     1   718 use Sub::Exporter -setup => { exports => [qw/eventfd signalfd timerfd/] };
  1         14226  
  1         6  
9              
10 1     1   405 use XSLoader;
  1         2  
  1         45  
11             XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION);
12              
13             1;
14              
15             #ABSTRACT: Linux specific special filehandles
16              
17             __END__