line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Ubic::Daemon::OS; |
2
|
|
|
|
|
|
|
$Ubic::Daemon::OS::VERSION = '1.58_01'; # TRIAL |
3
|
36
|
|
|
36
|
|
14547
|
use strict; |
|
36
|
|
|
|
|
72
|
|
|
36
|
|
|
|
|
1112
|
|
4
|
36
|
|
|
36
|
|
155
|
use warnings; |
|
36
|
|
|
|
|
57
|
|
|
36
|
|
|
|
|
3674
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: base class for os-specific daemon methods |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub new { |
9
|
42
|
|
|
42
|
1
|
378
|
return bless {} => shift; |
10
|
|
|
|
|
|
|
} |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub pid2guid { |
13
|
0
|
|
|
0
|
1
|
|
die 'not implemented'; |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
sub pid2cmd { |
17
|
0
|
|
|
0
|
1
|
|
die 'not implemented'; |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
sub close_all_fh { |
21
|
0
|
|
|
0
|
1
|
|
die 'not implemented'; |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
sub pid_exists { |
25
|
0
|
|
|
0
|
1
|
|
die 'not implemented'; |
26
|
|
|
|
|
|
|
} |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__END__ |