summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Clean up char vs. uint8_t in junk filling code.Jason Evans2016-04-113-17/+19
* Refactor/fix ph.Jason Evans2016-04-118-337/+615
* Reduce differences between alternative bitmap implementations.Jason Evans2016-04-062-8/+5
* Fix bitmap_sfu() regression.Jason Evans2016-04-061-1/+1
* Fix a compilation warning in the ph test code.Jason Evans2016-04-051-20/+1
* Update implementation details docs re: PTRDIFF_MAX.Jason Evans2016-03-311-3/+11
* Add JEMALLOC_ALLOC_JUNK and JEMALLOC_FREE_JUNK macrosChris Peterson2016-03-317-32/+40
* Update a comment.Jason Evans2016-03-311-2/+2
* Fix potential chunk leaks.Jason Evans2016-03-315-51/+26
* Fix -Wunreachable-code warning in malloc_vsnprintf().Chris Peterson2016-03-271-2/+2
* 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
* Fix MSVC projectrustyx2016-03-242-0/+8
* Avoid blindly enabling assertions for header code when testing.Jason Evans2016-03-231-33/+45
* Constify various internal arena APIs.Jason Evans2016-03-234-73/+111
* Code formatting fixes.Jason Evans2016-03-232-2/+4
* Always inline performance-critical rtree operations.Jason Evans2016-03-231-9/+10
* Optimize rtree_get().Jason Evans2016-03-233-35/+134
* Enable -Wsign-compare warnings.Chris Peterson2016-03-151-0/+1
* Refactor out signed/unsigned comparisons.Jason Evans2016-03-155-18/+14
* Add --with-version.Jason Evans2016-03-152-20/+33
* Add (size_t) casts to MALLOCX_ALIGN().Jason Evans2016-03-112-17/+14
* 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-082-49/+23
* Use pairing heap for arena->runs_availDave Watson2016-03-083-18/+40
* Refactor ph_merge_ordered() out of ph_merge().Jason Evans2016-03-082-17/+23
* Unittest for pairing heapDave Watson2016-03-082-0/+93
* Pairing heapDave Watson2016-03-085-0/+270
* Replace contributor name with github account.Jason Evans2016-03-081-2/+2
* Avoid a potential innocuous compiler warning.Jason Evans2016-03-032-2/+6
* Fix stack corruption and uninitialized var warningDmitri Smirnov2016-02-292-7/+8
* Fix MSVC project and improve MSVC lib naming (v140 -> vc140)rustyx2016-02-293-7/+23
* Remove errno overrides.Dmitri Smirnov2016-02-291-21/+1
* Update copyright dates for 2016.Jason Evans2016-02-281-2/+2
* Merge branch 'dev'4.1.0Jason Evans2016-02-2885-1590/+6236
|\
| * Update ChangeLog for 4.1.0.Jason Evans2016-02-281-1/+1
| * Make test_threads more genericrustyx2016-02-281-66/+55
| * Update ChangeLog.Jason Evans2016-02-281-7/+10
| * Fix decay tests for --disable-tcache case.Jason Evans2016-02-281-6/+14
| * Fix a potential tsd cleanup leak.Jason Evans2016-02-281-0/+3
| * Fix stats.arenas.<i>.[...] for --disable-stats case.Jason Evans2016-02-286-86/+120
| * Fix decay tests for --disable-stats case.Jason Evans2016-02-281-11/+18
| * Add/alphabetize private symbols.Jason Evans2016-02-271-15/+15
| * Fix stats.cactive accounting regression.Jason Evans2016-02-272-33/+29
| * Update ChangeLog in preparation for 4.1.0.Jason Evans2016-02-271-0/+70
| * Refactor arena_cactive_update() into arena_cactive_{add,sub}().Jason Evans2016-02-271-7/+19
| * Remove invalid tests.Jason Evans2016-02-272-18/+2
| * Move retaining out of default chunk hooksbuchgr2016-02-261-11/+25
| * Refactor some bitmap cpp logic.Jason Evans2016-02-261-3/+2
| * Use linear scan for small bitmapsDave Watson2016-02-262-3/+88