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