Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Memory leaks and reference counting within Perl.

by habit_forming (Monk)
on Jan 05, 2005 at 23:17 UTC ( [id://419774]=note: print w/replies, xml ) Need Help??


in reply to Memory leaks and reference counting within Perl.

There are a couple of things happening here.

1) Inside of the closure the var $hashref is re-my'd and thus is a completely new variable, therefore no reference to %monks is transmitted outside the closure. This means that $hashref is undef outside the closure.

2) If you remove the second my and still initialize $hashref to point to %monks then the memory will not be cleaned up because there still exists a variable that has a reference pointing to it so its reference count is not zero but the memory that was previously refered to as %monks is no longer accessible by that name but is accessible by %$hash_ref. Now, if you make $hash_ref = undef; then the final reference to the memory previously labeled %monks will finally go away thus making the reference count to that piece of memory zero and Perl will clean it up if it feels it needs to, otherwise that memory will just go back into the pool to be reused.

At least that is the way I understand it. Those with more internals experience may prove me wrong. =)

Cheers!
--habit

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://419774]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-19 07:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found