libdevel-refcount-perl 0.09-1build1 source package in Ubuntu

Changelog

libdevel-refcount-perl (0.09-1build1) oneiric; urgency=low

  * Rebuild for Perl 5.12.
 -- Colin Watson <email address hidden>   Sun, 08 May 2011 12:57:30 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Oneiric
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-refcount-perl_0.09.orig.tar.gz 12.5 KiB 42e5933f70470845c240934d804c7bf84a8080cd0a491c5a2bb9fd17ff1f6e00
libdevel-refcount-perl_0.09-1build1.debian.tar.gz 2.4 KiB c91f2838a881fd72f079a99941fe65f8ae4ca55c6f27e3f3f354f1cea37167fc
libdevel-refcount-perl_0.09-1build1.dsc 2.1 KiB 3faa4942d0bc1edc46f093b4f702b967db0db69008c9f6f7ae8235815f7a8db8

Available diffs

View changes file

Binary packages built by this source

libdevel-refcount-perl: Perl module to obtain the reference count of a variable

 Devel::Refcount provides a single function which obtains the reference count
 of the object being pointed to by the passed reference value.
 .
 Internally, Perl maintains a count of the number of 'things' referring to each
 variable, as a means of providing automatic memory management. Every time a
 reference is made to a scalar value, for example, the reference count is
 incremented; every time that reference is lost (eg. when a lexical variable
 goes out of scope) then the reference count is decremented.