libdevel-leak-perl 0.03-2build2 source package in Ubuntu

Changelog

libdevel-leak-perl (0.03-2build2) quantal; urgency=low

  * Rebuild for new armel compiler default of ARMv5t.
 -- Colin Watson <email address hidden>   Thu, 04 Oct 2012 14:08:15 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Quantal
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libdevel-leak-perl_0.03.orig.tar.gz 3.2 KiB 6f42c34f11e2b4e3ea2e0e6b9416a88a685add447910caf4d91dd2c178177252
libdevel-leak-perl_0.03-2build2.debian.tar.gz 2.5 KiB db34159ad8aa48f08665d5e1edf003cb7b14b45801f67812e6f0ee789118fb45
libdevel-leak-perl_0.03-2build2.dsc 2.1 KiB 6ca26e52440b75a72a8afb5af497845ff5cf47a416e14e8cc5ccf220a03d14e6

Available diffs

View changes file

Binary packages built by this source

libdevel-leak-perl: utility for looking for perl objects that are not reclaimed

 Devel::Leak has two functions: NoteSV and CheckSV.
 .
 NoteSV walks the perl internal table of allocated SVs (scalar values) - (which
 actually contains arrays and hashes too), and records their addresses in a
 table. It returns a count of these "things", and stores a pointer to the
 table (which is obtained from the heap using malloc()) in its argument.
 .
 CheckSV is passed argument which holds a pointer to a table created by
 NoteSV. It re-walks the perl-internals and calls sv_dump() for any "things"
 which did not exist when NoteSV was called. It returns a count of the number
 of "things" now allocated.