line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
3
|
|
|
3
|
|
424131
|
use strict; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
84
|
|
2
|
3
|
|
|
3
|
|
19
|
use warnings; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
150
|
|
3
|
|
|
|
|
|
|
package Alien::libvas; |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# ABSTRACT: Perl distribution for libvas |
6
|
|
|
|
|
|
|
# VERSION |
7
|
|
|
|
|
|
|
our $VERSION = '0.210'; |
8
|
|
|
|
|
|
|
|
9
|
3
|
|
|
3
|
|
18
|
use parent 'Alien::Base'; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
23
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=pod |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=encoding utf8 |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Alien::libvas - Perl distribution for libvas |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 INSTALL |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
cpan Alien::libvas |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DESCRIPTION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
See L for a Perl wrapper that makes use of this distribution. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 PLATFORMS |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
libvas claims compatiblity with WinAPI's ReadProcessMemory/WriteProcessMeory, macOS/GNU Hurd Mach API, Linux procfs /proc/pid/mem, ptrace (2), and process_vm_readv/process_vm_writev, SunOS procfs /proc/pid/as and finally BSD with ptrace (2) or procfs. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
I don't have all these systems to verify this. So please report bugs you might run into, preferably on Github. :-) |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |
38
|
|
|
|
|
|
|
__END__ |