index
:
jemalloc.git
dev
master
stable-3
stable-4
jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
arena.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Replace extent_tree_szad_* with extent_heap_*.
Jason Evans
2016-06-03
1
-6/+8
*
Use rtree rather than [sz]ad trees for chunk split/coalesce operations.
Jason Evans
2016-06-03
1
-2/+0
*
Remove redundant chunk argument from chunk_{,de,re}register().
Jason Evans
2016-06-03
1
-2/+2
*
Replace extent_achunk_[gs]et() with extent_slab_[gs]et().
Jason Evans
2016-06-03
1
-3/+3
*
Add extent_active_[gs]et().
Jason Evans
2016-06-03
1
-3/+3
*
Refactor rtree to always use base_alloc() for node allocation.
Jason Evans
2016-06-03
1
-27/+32
*
Use rtree-based chunk lookups rather than pointer bit twiddling.
Jason Evans
2016-06-03
1
-110/+135
*
Rename extent_node_t to extent_t.
Jason Evans
2016-05-16
1
-88/+87
*
Simplify run quantization.
Jason Evans
2016-05-16
1
-150/+29
*
Refactor runs_avail.
Jason Evans
2016-05-16
1
-38/+23
*
Implement pz2ind(), pind2sz(), and psz2u().
Jason Evans
2016-05-13
1
-2/+3
*
Initialize arena_bin_info at compile time rather than at boot time.
Jason Evans
2016-05-13
1
-79/+33
*
Remove redzone support.
Jason Evans
2016-05-13
1
-140/+13
*
Remove quarantine support.
Jason Evans
2016-05-13
1
-23/+7
*
Remove Valgrind support.
Jason Evans
2016-05-13
1
-38/+3
*
Resolve bootstrapping issues when embedded in FreeBSD libc.
Jason Evans
2016-05-11
1
-287/+298
*
Optimize the fast paths of calloc() and [m,d,sd]allocx().
Jason Evans
2016-05-06
1
-1/+1
*
Add the stats.retained and stats.arenas.<i>.retained statistics.
Jason Evans
2016-05-04
1
-0/+1
*
Fix huge_palloc() regression.
Jason Evans
2016-05-04
1
-2/+2
*
Fix fork()-related lock rank ordering reversals.
Jason Evans
2016-04-26
1
-5/+23
*
Fix arena reset effects on large/huge stats.
Jason Evans
2016-04-25
1
-5/+24
*
Implement the arena.<i>.reset mallctl.
Jason Evans
2016-04-22
1
-37/+188
*
Do not allocate metadata via non-auto arenas, nor tcaches.
Jason Evans
2016-04-22
1
-15/+14
*
Reduce a variable scope.
Jason Evans
2016-04-22
1
-2/+1
*
Update private_symbols.txt.
Jason Evans
2016-04-18
1
-12/+12
*
Add witness, a simple online locking validator.
Jason Evans
2016-04-14
1
-278/+290
*
Fix 64-to-32 conversion warnings in 32-bit mode
rustyx
2016-04-12
1
-11/+15
*
Support --with-lg-page values larger than actual page size.
Jason Evans
2016-04-11
1
-1/+1
*
Refactor/fix ph.
Jason Evans
2016-04-11
1
-48/+47
*
Add JEMALLOC_ALLOC_JUNK and JEMALLOC_FREE_JUNK macros
Chris Peterson
2016-03-31
1
-17/+19
*
Update a comment.
Jason Evans
2016-03-31
1
-2/+2
*
Fix potential chunk leaks.
Jason Evans
2016-03-31
1
-8/+8
*
Constify various internal arena APIs.
Jason Evans
2016-03-23
1
-23/+28
*
Convert arena_bin_t's runs from a tree to a heap.
Jason Evans
2016-03-08
1
-35/+15
*
Use pairing heap for arena->runs_avail
Dave Watson
2016-03-08
1
-13/+15
*
Avoid a potential innocuous compiler warning.
Jason Evans
2016-03-03
1
-1/+5
*
Fix stack corruption and uninitialized var warning
Dmitri Smirnov
2016-02-29
1
-1/+1
*
Fix stats.arenas.<i>.[...] for --disable-stats case.
Jason Evans
2016-02-28
1
-7/+32
*
Fix stats.cactive accounting regression.
Jason Evans
2016-02-27
1
-31/+17
*
Refactor arena_cactive_update() into arena_cactive_{add,sub}().
Jason Evans
2016-02-27
1
-7/+19
*
Silence miscellaneous 64-to-32-bit data loss warnings.
Jason Evans
2016-02-26
1
-2/+2
*
Remove a superfluous comment.
Jason Evans
2016-02-26
1
-1/+0
*
Make *allocx() size class overflow behavior defined.
Jason Evans
2016-02-25
1
-15/+21
*
Refactor arenas array (fixes deadlock).
Jason Evans
2016-02-25
1
-0/+21
*
Fix arena_size computation.
Dave Watson
2016-02-25
1
-1/+1
*
Fix arena_run_first_best_fit
Dave Watson
2016-02-25
1
-1/+1
*
Silence miscellaneous 64-to-32-bit data loss warnings.
Jason Evans
2016-02-24
1
-10/+11
*
Refactor jemalloc_ffs*() into ffs_*().
Jason Evans
2016-02-24
1
-2/+1
*
Collapse arena_avail_tree_* into arena_run_tree_*.
Jason Evans
2016-02-24
1
-11/+7
*
Separate arena_avail trees
Dave Watson
2016-02-24
1
-88/+50
[next]