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   165587 use 5.008005;
  4         44  
  4         134  
3 4     4   16 use strict;
  4         5  
  4         108  
4 4     4   25 use warnings;
  4         5  
  4         117  
5 4     4   876 use parent qw(Exporter);
  4         527  
  4         24  
6              
7             our $VERSION = "0.05";
8              
9             our @EXPORT = qw(accept4 SOCK_CLOEXEC SOCK_NONBLOCK);
10              
11 4     4   311 use XSLoader;
  4         6  
  4         138  
12             XSLoader::load(__PACKAGE__, $VERSION);
13              
14             1;
15             __END__