File Coverage

blib/lib/Linux/Sys/CPU/Affinity.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Linux::Sys::CPU::Affinity;
2              
3 1     1   72007 use 5.026001;
  1         3  
4 1     1   40 use strict;
  1         4  
  1         40  
5 1     1   7 use warnings;
  1         2  
  1         170  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our %EXPORT_TAGS = ( 'all' => [ qw(
12             cpu_setaffinity
13             ) ] );
14              
15             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
16              
17             our @EXPORT = qw();
18              
19             our $VERSION = '0.01';
20              
21             require XSLoader;
22             XSLoader::load('Linux::Sys::CPU::Affinity', $VERSION);
23              
24             1;
25             __END__