Memory management internals

From OpenSSLWiki
Revision as of 13:41, 9 October 2014 by DavidCary (talk | contribs) (brief summary.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

free list in libssl

libssl maintains an internal free list, rather than calling malloc/free directly. See these two blog posts:

These posts recommend getting rid of that internal free list (custom memory allocation), and simply calling malloc/free directly.