summaryrefslogtreecommitdiffstats
path: root/include/jemalloc
Commit message (Expand)AuthorAgeFilesLines
...
* Update private_symbols.txt.Jason Evans2016-04-181-8/+31
* Update private_symbols.txtRajat Goel2016-04-181-0/+4
* Fix style nits.Jason Evans2016-04-171-1/+1
* Fix malloc_mutex_[un]lock() to conditionally check witness.Jason Evans2016-04-171-2/+2
* s/MALLOC_MUTEX_RANK_OMIT/WITNESS_RANK_OMIT/Jason Evans2016-04-141-1/+1
* Fix a compilation error.Jason Evans2016-04-141-2/+2
* Add witness, a simple online locking validator.Jason Evans2016-04-1415-187/+353
* Fix a style nit.Jason Evans2016-04-131-1/+2
* Simplify RTREE_HEIGHT_MAX definition.Jason Evans2016-04-111-29/+4
* Support --with-lg-page values larger than actual page size.Jason Evans2016-04-112-4/+4
* Clean up char vs. uint8_t in junk filling code.Jason Evans2016-04-111-2/+2
* Refactor/fix ph.Jason Evans2016-04-114-266/+331
* Reduce differences between alternative bitmap implementations.Jason Evans2016-04-061-1/+1
* Fix bitmap_sfu() regression.Jason Evans2016-04-061-1/+1
* Add JEMALLOC_ALLOC_JUNK and JEMALLOC_FREE_JUNK macrosChris Peterson2016-03-312-3/+8
* Fix potential chunk leaks.Jason Evans2016-03-312-7/+1
* Remove unused arenas_extend() function declaration.Chris Peterson2016-03-261-1/+0
* Use abort() for fallback implementations of unreachable().Jason Evans2016-03-241-2/+2
* Constify various internal arena APIs.Jason Evans2016-03-232-49/+82
* Always inline performance-critical rtree operations.Jason Evans2016-03-231-9/+10
* Optimize rtree_get().Jason Evans2016-03-231-35/+131
* Refactor out signed/unsigned comparisons.Jason Evans2016-03-151-2/+2
* Add (size_t) casts to MALLOCX_ALIGN().Jason Evans2016-03-111-4/+4
* typecast address to pointer to byte to avoid unaligned memory access errorRajeev Misra2016-03-111-2/+2
* Convert arena_bin_t's runs from a tree to a heap.Jason Evans2016-03-081-14/+8
* Use pairing heap for arena->runs_availDave Watson2016-03-082-5/+25
* Refactor ph_merge_ordered() out of ph_merge().Jason Evans2016-03-082-17/+23
* Pairing heapDave Watson2016-03-083-0/+267
* Avoid a potential innocuous compiler warning.Jason Evans2016-03-031-1/+1
* Fix stats.arenas.<i>.[...] for --disable-stats case.Jason Evans2016-02-283-1/+8
* Add/alphabetize private symbols.Jason Evans2016-02-271-15/+15
* Fix stats.cactive accounting regression.Jason Evans2016-02-271-2/+12
* Refactor some bitmap cpp logic.Jason Evans2016-02-261-3/+2
* Use linear scan for small bitmapsDave Watson2016-02-261-2/+48
* Miscellaneous bitmap refactoring.Jason Evans2016-02-262-12/+10
* Silence miscellaneous 64-to-32-bit data loss warnings.Jason Evans2016-02-261-10/+9
* Make *allocx() size class overflow behavior defined.Jason Evans2016-02-256-20/+19
* Refactor arenas array (fixes deadlock).Jason Evans2016-02-254-26/+30
* Attempt mmap-based in-place huge reallocation.Jason Evans2016-02-251-2/+2
* Fix ffs_zu() compilation error on MinGW.Jason Evans2016-02-241-3/+5
* Silence miscellaneous 64-to-32-bit data loss warnings.Jason Evans2016-02-244-11/+16
* Change lg_floor() return type from size_t to unsigned.Jason Evans2016-02-242-17/+18
* Make opt_narenas unsigned rather than size_t.Jason Evans2016-02-241-1/+1
* Make nhbins unsigned rather than size_t.Jason Evans2016-02-241-1/+1
* Refactor jemalloc_ffs*() into ffs_*().Jason Evans2016-02-246-37/+68
* Fix Windows build issuesDmitri Smirnov2016-02-241-2/+1
* Collapse arena_avail_tree_* into arena_run_tree_*.Jason Evans2016-02-241-2/+1
* Separate arena_avail treesDave Watson2016-02-241-6/+6
* Remove rbt_nilDave Watson2016-02-241-90/+64
* Use table lookup for run_quantize_{floor,ceil}().Jason Evans2016-02-232-1/+2