File Coverage

blib/lib/Socket/Netlink/Taskstats.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             # You may distribute under the terms of either the GNU General Public License
2             # or the Artistic License (the same terms as Perl itself)
3             #
4             # (C) Paul Evans, 2010-2011 -- leonerd@leonerd.org.uk
5              
6             package Socket::Netlink::Taskstats;
7              
8 2     2   937 use strict;
  2         4  
  2         81  
9 2     2   10 use warnings;
  2         5  
  2         105  
10              
11             our $VERSION = '0.03';
12              
13 2     2   20 use Exporter 'import';
  2         4  
  2         58  
14              
15 2     2   1080 use Socket::Netlink::Taskstats_const;
  2         5  
  2         73  
16              
17             =head1 NAME
18              
19             C - interface to Linux's C generic
20             netlink socket protocol
21              
22             =head1 DESCRIPTION
23              
24             This module contains the low-level constants and structure handling functions
25             required to use the C protocol of Linux's C
26             netlink socket protocol. It is suggested to use the high-level object
27             interface to this protocol instead; see L.
28              
29             =cut
30              
31             =head1 SEE ALSO
32              
33             =over 4
34              
35             =item *
36              
37             L - Object interface to C generic
38             netlink protocol sockets
39              
40             =item *
41              
42             L - interface to Linux's C socket family
43              
44             =back
45              
46             =head1 AUTHOR
47              
48             Paul Evans
49              
50             =cut
51              
52             0x55AA;