1. a3c4193 Fix a compilation warning in the ph test code. by Jason Evans · 8 years ago
  2. b582d2a Update implementation details docs re: PTRDIFF_MAX. by Jason Evans · 8 years ago
  3. a82070e Add JEMALLOC_ALLOC_JUNK and JEMALLOC_FREE_JUNK macros by Chris Peterson · 8 years ago
  4. f86bc08 Update a comment. by Jason Evans · 8 years ago
  5. ce7c0f9 Fix potential chunk leaks. by Jason Evans · 8 years ago
  6. 0bc716a Fix -Wunreachable-code warning in malloc_vsnprintf(). by Chris Peterson · 8 years ago
  7. f306028 Remove unused arenas_extend() function declaration. by Chris Peterson · 8 years ago
  8. af3184c Use abort() for fallback implementations of unreachable(). by Jason Evans · 8 years ago
  9. 232b13d Fix MSVC project by rustyx · 8 years ago
  10. ff63dca Avoid blindly enabling assertions for header code when testing. by Jason Evans · 8 years ago
  11. 61a6dfc Constify various internal arena APIs. by Jason Evans · 8 years ago
  12. f6bd2e5 Code formatting fixes. by Jason Evans · 8 years ago
  13. 6a88519 Always inline performance-critical rtree operations. by Jason Evans · 8 years ago
  14. 6c460ad Optimize rtree_get(). by Jason Evans · 8 years ago
  15. 18903c5 Enable -Wsign-compare warnings. by Chris Peterson · 8 years ago
  16. 22af74e Refactor out signed/unsigned comparisons. by Jason Evans · 8 years ago
  17. 434ea64 Add --with-version. by Jason Evans · 8 years ago
  18. 824b947 Add (size_t) casts to MALLOCX_ALIGN(). by Jason Evans · 8 years ago
  19. ca18f28 typecast address to pointer to byte to avoid unaligned memory access error by Rajeev Misra · 8 years ago
  20. 613cdc8 Convert arena_bin_t's runs from a tree to a heap. by Jason Evans · 8 years ago
  21. 4a0dbb5 Use pairing heap for arena->runs_avail by Dave Watson · 8 years ago
  22. f8d80d6 Refactor ph_merge_ordered() out of ph_merge(). by Jason Evans · 8 years ago
  23. 34dca56 Unittest for pairing heap by Dave Watson · 8 years ago
  24. 6bafa66 Pairing heap by Dave Watson · 8 years ago
  25. e3998c6 Replace contributor name with github account. by Jason Evans · 8 years ago
  26. 022f689 Avoid a potential innocuous compiler warning. by Jason Evans · 8 years ago
  27. 33184bf Fix stack corruption and uninitialized var warning by Dmitri Smirnov · 8 years ago
  28. 0e1d5c2 Fix MSVC project and improve MSVC lib naming (v140 -> vc140) by rustyx · 8 years ago
  29. 86478b2 Remove errno overrides. by Dmitri Smirnov · 8 years ago
  30. 994da42 Update copyright dates for 2016. by Jason Evans · 8 years ago
  31. df900db Merge branch 'dev' by Jason Evans · 8 years ago
  32. 3a34261 Update ChangeLog for 4.1.0. by Jason Evans · 8 years ago
  33. e270a8f Make test_threads more generic by rustyx · 8 years ago
  34. e025c51 Update ChangeLog. by Jason Evans · 8 years ago
  35. 7d30554 Fix decay tests for --disable-tcache case. by Jason Evans · 8 years ago
  36. 39f5875 Fix a potential tsd cleanup leak. by Jason Evans · 8 years ago
  37. 3c07f80 Fix stats.arenas.<i>.[...] for --disable-stats case. by Jason Evans · 8 years ago
  38. fd48582 Fix decay tests for --disable-stats case. by Jason Evans · 8 years ago
  39. 69acd25 Add/alphabetize private symbols. by Jason Evans · 8 years ago
  40. 40ee9aa Fix stats.cactive accounting regression. by Jason Evans · 8 years ago
  41. 14be4a7 Update ChangeLog in preparation for 4.1.0. by Jason Evans · 8 years ago
  42. 3763d3b Refactor arena_cactive_update() into arena_cactive_{add,sub}(). by Jason Evans · 8 years ago
  43. a62e94c Remove invalid tests. by Jason Evans · 8 years ago
  44. d412624 Move retaining out of default chunk hooks by buchgr · 9 years ago
  45. 20fad34 Refactor some bitmap cpp logic. by Jason Evans · 8 years ago
  46. b8823ab Use linear scan for small bitmaps by Dave Watson · 8 years ago
  47. 01ecdf3 Miscellaneous bitmap refactoring. by Jason Evans · 8 years ago
  48. 4c4ee29 Improve test_threads performance by rustyx · 8 years ago
  49. ebd00e9 Fix MSVC project by rustyx · 8 years ago
  50. 42ce80e Silence miscellaneous 64-to-32-bit data loss warnings. by Jason Evans · 8 years ago
  51. 8282a2a Remove a superfluous comment. by Jason Evans · 8 years ago
  52. 9d2c10f Add more HUGE_MAXCLASS overflow checks. by Jason Evans · 8 years ago
  53. e3195fa Cast PTRDIFF_MAX to size_t before adding 1. by Jason Evans · 8 years ago
  54. 0c516a0 Make *allocx() size class overflow behavior defined. by Jason Evans · 8 years ago
  55. 767d850 Refactor arenas array (fixes deadlock). by Jason Evans · 8 years ago
  56. 3812729 Fix arena_size computation. by Dave Watson · 8 years ago
  57. cd86c14 Fix arena_run_first_best_fit by Dave Watson · 8 years ago
  58. c7a9a6c Attempt mmap-based in-place huge reallocation. by Jason Evans · 8 years ago
  59. 5ec703d Document the heap profile format. by Jason Evans · 8 years ago
  60. f591d26 Update manual to reflect removal of global huge object tree. by Jason Evans · 8 years ago
  61. aa63d5d Fix ffs_zu() compilation error on MinGW. by Jason Evans · 8 years ago
  62. ca8fffb Silence miscellaneous 64-to-32-bit data loss warnings. by Jason Evans · 8 years ago
  63. b3d0070 Compile with -Wshorten-64-to-32. by Jason Evans · 8 years ago
  64. 9e1810c Silence miscellaneous 64-to-32-bit data loss warnings. by Jason Evans · 8 years ago
  65. 1c42a04 Change lg_floor() return type from size_t to unsigned. by Jason Evans · 8 years ago
  66. 0931cec Use ssize_t for readlink() rather than int. by Jason Evans · 8 years ago
  67. 8f683b9 Make opt_narenas unsigned rather than size_t. by Jason Evans · 8 years ago
  68. 603b3bd Make nhbins unsigned rather than size_t. by Jason Evans · 8 years ago
  69. 8dd5115 Explicitly cast mib[] elements to unsigned where appropriate. by Jason Evans · 8 years ago
  70. 9f4ee60 Refactor jemalloc_ffs*() into ffs_*(). by Jason Evans · 8 years ago
  71. b41a07c Fix Windows build issues by Dmitri Smirnov · 8 years ago
  72. ae45142 Collapse arena_avail_tree_* into arena_run_tree_*. by Jason Evans · 8 years ago
  73. 3417a30 Separate arena_avail trees by Dave Watson · 8 years ago
  74. 2b1fc90 Remove rbt_nil by Dave Watson · 8 years ago
  75. 0da8ce1 Use table lookup for run_quantize_{floor,ceil}(). by Jason Evans · 8 years ago
  76. 08551ee Fix run_quantize_ceil(). by Jason Evans · 8 years ago
  77. a9a4684 Test run quantization. by Jason Evans · 8 years ago
  78. 817d903 Indentation style cleanup. by Jason Evans · 8 years ago
  79. 9bad079 Refactor time_* into nstime_*. by Jason Evans · 8 years ago
  80. 788d29d Fix Windows-specific prof-related compilation portability issues. by Jason Evans · 8 years ago
  81. fd9cd7a Fix time_update() to compile and work on MinGW. by Jason Evans · 8 years ago
  82. 56139dc Remove _WIN32-specific struct timespec declaration. by Jason Evans · 8 years ago
  83. ecae123 Fix overflow in prng_range(). by Jason Evans · 8 years ago
  84. aac93f4 Add symbol mangling for prng_[lg_]range(). by Jason Evans · 8 years ago
  85. 984c64f Add MS Visual Studio 2015 support by rustyx · 8 years ago
  86. 3c2c5a5 Fix warning in ipalloc by rustyx · 8 years ago
  87. efbee86 Prevent MSVC from optimizing away tls_callback (resolves #318) by rustyx · 8 years ago
  88. 7f28398 getpid() fix for Win32 by rustyx · 9 years ago
  89. 90c7269 Add CPU "pause" intrinsic for MSVC by rustyx · 9 years ago
  90. bc49863 Fix error "+ 2")syntax error: invalid arithmetic operator (error token is " in Cygwin x64 by rustyx · 9 years ago
  91. 46e0b23 Detect LG_SIZEOF_PTR depending on MSVC platform target by rustyx · 9 years ago
  92. effaf7d Fix a typo in the ckh_search() prototype. by Christopher Ferris · 8 years ago
  93. a0aaad1 Handle unaligned keys in hash(). by Jason Evans · 8 years ago
  94. 9f24c94 Increase test coverage in test_decay_ticks. by Jason Evans · 8 years ago
  95. 243f7a0 Implement decay-based unused dirty page purging. by Jason Evans · 8 years ago
  96. 8e82af1 Implement smoothstep table generation. by Jason Evans · 8 years ago
  97. 1a4ad3c Refactor out arena_compute_npurge(). by Jason Evans · 8 years ago
  98. db927b6 Refactor arenas_cache tsd. by Jason Evans · 8 years ago
  99. 4985dc6 Refactor arena_ralloc_no_move(). by Jason Evans · 8 years ago
  100. 578cd16 Refactor arena_malloc_hard() out of arena_malloc(). by Jason Evans · 8 years ago