File Coverage

blib/lib/Thread/SigMask.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Thread::SigMask;
2             $Thread::SigMask::VERSION = '0.004';
3 1     1   19773 use strict;
  1         3  
  1         40  
4 1     1   6 use warnings FATAL => 'all';
  1         2  
  1         42  
5              
6 1     1   6 use XSLoader;
  1         2  
  1         25  
7 1     1   5 use Exporter 5.57 'import';
  1         23  
  1         80  
8             our @EXPORT = qw/sigmask/;
9              
10             XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION);
11              
12             1;
13              
14             #ABSTRACT: Thread specific signal masks
15              
16             __END__