File Coverage

blib/lib/DBD/Sys/Plugin/Win32.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package DBD::Sys::Plugin::Win32;
2              
3 3     3   2456 use strict;
  3         6  
  3         86  
4 3     3   13 use warnings;
  3         3  
  3         81  
5              
6 3     3   12 use vars qw($VERSION);
  3         5  
  3         103  
7              
8 3     3   15 use base qw(DBD::Sys::Plugin);
  3         3  
  3         322  
9              
10             $VERSION = "0.102";
11              
12             =head1 NAME
13              
14             DBD::Sys::Plugin::Win32 - provides tables B.
15              
16             =head1 ISA
17              
18             DBD::Sys::Plugin::Win32
19             ISA DBD::Sys::Plugin
20              
21             =head1 DESCRIPTION
22              
23             This plugin manages the tables for any MSWin32 compatible operating
24             system.
25              
26             =head2 TABLES
27              
28             =head3 pwent
29              
30             Table containing user information. See L
31             for details.
32              
33             =head3 grent
34              
35             Table containing group information. See L
36             for details.
37              
38             =head3 procs
39              
40             Table containing process information. See L
41             for details.
42              
43             =head1 METHODS
44              
45             =head2 get_priority
46              
47             Returns the default priority for win32 tables, 500.
48              
49             =cut
50              
51 3     3 1 8 sub get_priority() { return 500; }
52              
53             =head1 PREREQUISITES
54              
55             This plugin only works on Windows.
56              
57             =head1 BUGS & LIMITATIONS
58              
59             No known bugs at this moment.
60              
61             The implementation of L is very limited for several
62             platforms and should improved. L lacks MSWin32 support
63             and needs help porting from autoconf to hints framework.
64              
65             =head1 AUTHOR
66              
67             Jens Rehsack Alexander Breibach
68             CPAN ID: REHSACK
69             rehsack@cpan.org alexander.breibach@googlemail.com
70             http://www.rehsack.de/
71              
72             =head1 COPYRIGHT
73              
74             This program is free software; you can redistribute
75             it and/or modify it under the same terms as Perl itself.
76              
77             The full text of the license can be found in the
78             LICENSE file included with this module.
79              
80             =head1 SUPPORT
81              
82             Free support can be requested via regular CPAN bug-tracking system. There is
83             no guaranteed reaction time or solution time, but it's always tried to give
84             accept or reject a reported ticket within a week. It depends on business load.
85             That doesn't mean that ticket via rt aren't handles as soon as possible,
86             that means that soon depends on how much I have to do.
87              
88             Business and commercial support should be acquired from the authors via
89             preferred freelancer agencies.
90              
91             =cut
92              
93             1;