File Coverage

blib/lib/Random/RDTSC.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Random::RDTSC;
2              
3 1     1   85606 use strict;
  1         2  
  1         27  
4 1     1   7 use warnings;
  1         54  
  1         116  
5             require Exporter;
6             require DynaLoader;
7              
8             our @ISA = qw(Exporter DynaLoader);
9             our @EXPORT_OK = qw(get_rdtsc rdtsc_rand64);
10             our $VERSION = '0.1';
11              
12             bootstrap Random::RDTSC $VERSION;
13              
14             1;
15              
16             __END__