summaryrefslogtreecommitdiffstats
path: root/jemalloc/src/mb.c
Commit message (Collapse)AuthorAgeFilesLines
* Add the "stats.cactive" mallctl.Jason Evans2011-03-191-1/+1
| | | | | | Add the "stats.cactive" mallctl, which can be used to efficiently and repeatedly query approximately how much active memory the application is utilizing.
* Restructure source tree.Jason Evans2010-02-111-1/+1
|
* Implement allocation profiling and leack checking.Jason Evans2010-02-101-0/+2
Add the --enable-prof and --enable-prof-libunwind configure options. Add the B/b, F/f, I/i, L/l, and U/u JEMALLOC_OPTIONS. Interval-based profile dump triggering is not yet implemented. Add supporting generic code: * Add memory barriers. * Add prn (LCG PRNG). * Add hash (Murmur hash function). * Add ckh (cuckoo hash tables).