Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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

In reply to Re: Memory leaks and reference counting within Perl. by habit_forming
in thread Memory leaks and reference counting within Perl. by DigitalKitty

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found