comment out hexdump stuff to remove the dependency

pull/2975/head
Isaac Connor 2020-07-07 09:23:32 -04:00
parent acf8a30434
commit b0f87eabc2
1 changed files with 7 additions and 7 deletions

View File

@ -102,7 +102,7 @@ $SIG{__DIE__} = \&handler;
# =========================================================================
# Debug
use Data::Hexdumper qw(hexdump);
#use Data::Hexdumper qw(hexdump);
#use Devel::Peek;
sub dump_mapped {
@ -116,12 +116,12 @@ sub dump_mapped {
printf("Mapped at %x\n", $monitor->{MMapAddr});
# Dump($mmap);
if ( $mmap && $$mmap ) {
print hexdump(
data => $$mmap, # what to dump
output_format => ' %4a : %S %S %S %S %S %S %S %S : %d',
# start_position => 336, # start at this offset ...
end_position => 400 # ... and end at this offset
);
#print hexdump(
#data => $$mmap, # what to dump
#output_format => ' %4a : %S %S %S %S %S %S %S %S : %d',
## start_position => 336, # start at this offset ...
#end_position => 400 # ... and end at this offset
#);
}
}