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   155423 use 5.008005;
  4         13  
  4         128  
3 4     4   14 use strict;
  4         6  
  4         101  
4 4     4   23 use warnings;
  4         7  
  4         110  
5 4     4   997 use parent qw(Exporter);
  4         526  
  4         20  
6              
7             our $VERSION = "0.03";
8              
9             our @EXPORT = qw(accept4 SOCK_CLOEXEC SOCK_NONBLOCK);
10              
11 4     4   261 use XSLoader;
  4         5  
  4         134  
12             XSLoader::load(__PACKAGE__, $VERSION);
13              
14             1;
15             __END__