Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: d3f30b5b431b1a44687eeb879d3082eda5c274b0
https://github.com/Perl/perl5/commit/d3f30b5b431b1a44687eeb879d3082eda5c274b0
Author: David Mitchell <[email protected]>
Date: 2023-12-13 (Wed, 13 Dec 2023)
Changed paths:
M embed.fnc
M embed.h
M pod/perlhacktips.pod
M proto.h
M sv.c
Log Message:
-----------
add sv_mark_arenas() and sv_sweep_arenas()
These two functions can be used to help identify which SVs have leaked.
See the new section in perlhacktips for full details, but basically the
first function sets the SVf_BREAK flag on all existing SVs, while the
second lists any SVs without that flag set (and so are likely candidates
for having leaked).