You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/sandbox/tracemem.pm

17 lines
427 B

## no critic (RequireUseWarnings, RequireUseStrict, RequireExplicitPackage)
our $old = 0;
BEGIN {
unshift @INC, sub {
my ($self, $file) = @_;
use GTop qw();
my $current=GTop->new->proc_mem($$)->size;
my $delta=$current-$old;
printf "pid %d proc_mem %d delta %-10d file %s\n", $$, $current, $delta, $file;
$old=$current;
}
}
1;
# run with: perl -Isandbox -mtracemem ...