File Coverage

blib/lib/Data/Deque/Shared.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod n/a
total 8 10 80.0


line stmt bran cond sub pod time code
1             package Data::Deque::Shared;
2 9     9   1105713 use strict;
  9         15  
  9         308  
3 9     9   36 use warnings;
  9         15  
  9         1323  
4             our $VERSION = '0.06';
5             require XSLoader;
6             XSLoader::load('Data::Deque::Shared', $VERSION);
7              
8 0     0     sub CLONE_SKIP { 1 } # blessed C-pointer handle: never clone into ithreads (double-free)
9             @Data::Deque::Shared::Int::ISA = ('Data::Deque::Shared');
10             @Data::Deque::Shared::Str::ISA = ('Data::Deque::Shared');
11             1;
12             __END__