The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Perl::SVCount - Get global count of allocated SVs

SYNOPSIS

    my $count = sv_count();
    ... # some code here
    say "Allocated " . (sv_count() - $count) . " more SVs";

DESCRIPTION

This module allows to access perl's internal global counters of allocated SVs. This might be useful for quickly detecting memory leaks.

sv_count() returns how many SVs (scalar values) are currently allocated.

AUTHOR

Copyright (c) 2012 Rafael Garcia-Suarez.

The git repository for this module can be found at https://github.com/rgs/Perl-SVCount.

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.