mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-25 18:17:19 +03:00
Add SEC module: a small extent cache.
This can be used to take pressure off a more centralized, worse-sharded allocator without requiring a full break of the arena abstraction.
This commit is contained in:
parent
1964b08394
commit
ea51e97bb8
10 changed files with 893 additions and 1 deletions
|
|
@ -142,6 +142,7 @@ C_SRCS := $(srcroot)src/jemalloc.c \
|
|||
$(srcroot)src/rtree.c \
|
||||
$(srcroot)src/safety_check.c \
|
||||
$(srcroot)src/sc.c \
|
||||
$(srcroot)src/sec.c \
|
||||
$(srcroot)src/stats.c \
|
||||
$(srcroot)src/sz.c \
|
||||
$(srcroot)src/tcache.c \
|
||||
|
|
@ -253,6 +254,7 @@ TESTS_UNIT := \
|
|||
$(srcroot)test/unit/rtree.c \
|
||||
$(srcroot)test/unit/safety_check.c \
|
||||
$(srcroot)test/unit/sc.c \
|
||||
$(srcroot)test/unit/sec.c \
|
||||
$(srcroot)test/unit/seq.c \
|
||||
$(srcroot)test/unit/SFMT.c \
|
||||
$(srcroot)test/unit/size_check.c \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue