Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

comment on

( #3333=superdoc: print w/replies, xml ) Need Help??

A while back, I did a simple test of a C program mallocing a 4 MB chunk of memory, then freeing it. The memory was returned to the OS on Windows and Linux -- but not on every other of the 12 different (mostly Unix-derived) platforms I ran the test on.

Whether the memory is returned to the OS or not depends on the implementation of the user-level malloc function. Traditional Unix implementations of malloc simply call sbrk(2) to increase the address space of the process. Since this call is expensive, when you call free, they typically do not return the memory to the OS, but keep it to reuse next time you call malloc.

glibc 2.x based Linux systems use ptmalloc, which is based on Doug Lea's malloc. This version of malloc is able to return memory to the OS because it uses mmap(2), rather than sbrk, when the chunk of memory requested is larger than some threshold value (typically 128K).

MSVC CRT malloc similarly uses a "small block" and "large block" heap heuristic -- but uses Win32 heaps, rather than sbrk/mmap, under the covers.

So, if you were desperate to have memory returned to the OS, you could go to the bother of building a custom perl which used a different implementation of malloc.


In reply to Re: Not able to release memory by eyepopslikeamosquito
in thread Not able to release memory by asinghvi

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? | Other CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2023-03-27 16:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (65 votes). Check out past polls.

    Notices?