File Coverage

blib/lib/Global/MutexLock.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Global::MutexLock;
2 3     3   26938 use 5.008001;
  3         7  
3 3     3   10 use strict;
  3         3  
  3         43  
4 3     3   12 use warnings;
  3         3  
  3         55  
5 3     3   7 use Exporter 'import';
  3         2  
  3         143  
6              
7             our $VERSION = "0.024";
8              
9             our @EXPORT_OK = qw(
10             mutex_create
11             mutex_lock
12             mutex_unlock
13             mutex_destory
14             );
15              
16 3     3   8 use XSLoader;
  3         3  
  3         83  
17             XSLoader::load(__PACKAGE__, $VERSION);
18              
19             1;
20             __END__