summaryrefslogtreecommitdiffstats
path: root/jemalloc/src/rtree.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.
* Add missing error checks.Jason Evans2011-03-151-1/+4
| | | | | Add missing error checks for pthread_mutex_init() calls. In practice, mutex initialization never fails, so this is merely good hygiene.
* Use offsetof() when sizing dynamic structures.Jason Evans2010-10-021-3/+4
| | | | | | Base dynamic structure size on offsetof(), rather than subtracting the size of the dynamic structure member. Results could differ on systems with strict data structure alignment requirements.
* Port to Mac OS X.Jason Evans2010-09-121-0/+42
Add Mac OS X support, based in large part on the OS X support in Mozilla's version of jemalloc.