File Coverage

blib/lib/Linux/Perl/aio/x86_64.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::Perl::aio::x86_64;
2              
3 2     2   608520 use strict;
  2         10  
  2         87  
4 2     2   14 use warnings;
  2         3  
  2         112  
5              
6             use parent (
7 2         43 'Linux::Perl::aio::bits64',
8 2     2   13 );
  2         5  
9              
10             use constant {
11 2         161 NR_io_setup => 206,
12             NR_io_destroy => 207,
13             NR_io_getevents => 208,
14             NR_io_submit => 209,
15             NR_io_cancel => 210,
16 2     2   94 };
  2         3  
17              
18             #----------------------------------------------------------------------
19              
20             package Linux::Perl::aio::Control::x86_64;
21              
22 2     2   13 use parent -norequire => 'Linux::Perl::aio::Control::bits64';
  2         4  
  2         10  
23              
24             1;