This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jtaylor
Recipients StyXman, bar.harel, dw, jtaylor, neologix, pitrou, vstinner, ztane
Date 2016-04-22.07:52:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461311538.73.0.482636637014.issue26601@psf.upfronthosting.co.za>
In-reply-to
Content
glibcs malloc is not obstack, its not a simple linear heap where one object on top means everything below is not freeable. It also uses MADV_DONTNEED give sbrk'd memory back to the system. This is the place where MADV_FREE can now be used now as the latter does not guarantee a page fault.
But that said of course you can construct workloads which lead to increased memory usage also with malloc and maybe python triggers them more often than other applications. Is there an existing issues showing the problem? It would be a good form of documentation in the source.
History
Date User Action Args
2016-04-22 07:52:18jtaylorsetrecipients: + jtaylor, pitrou, vstinner, StyXman, neologix, dw, ztane, bar.harel
2016-04-22 07:52:18jtaylorsetmessageid: <1461311538.73.0.482636637014.issue26601@psf.upfronthosting.co.za>
2016-04-22 07:52:18jtaylorlinkissue26601 messages
2016-04-22 07:52:18jtaylorcreate