File Coverage

blib/lib/Linux/Socket/Accept4.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Linux::Socket::Accept4;
2 4     4   161142 use 5.008005;
  4         11  
  4         138  
3 4     4   16 use strict;
  4         6  
  4         112  
4 4     4   27 use warnings;
  4         5  
  4         125  
5 4     4   972 use parent qw(Exporter);
  4         540  
  4         21  
6              
7             our $VERSION = "0.04";
8              
9             our @EXPORT = qw(accept4 SOCK_CLOEXEC SOCK_NONBLOCK);
10              
11 4     4   288 use XSLoader;
  4         6  
  4         152  
12             XSLoader::load(__PACKAGE__, $VERSION);
13              
14             1;
15             __END__