Skip to content

Update jemalloc to 4.0.0 #28304

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/jemalloc
Submodule jemalloc updated 99 files
+3 −0 .gitignore
+2 −2 COPYING
+161 −5 ChangeLog
+101 −5 INSTALL
+27 −13 Makefile.in
+79 −0 bin/jemalloc-config.in
+61 −58 bin/jeprof.in
+508 −82 configure
+198 −48 configure.ac
+616 −166 doc/jemalloc.xml.in
+460 −399 include/jemalloc/internal/arena.h
+406 −76 include/jemalloc/internal/atomic.h
+1 −3 include/jemalloc/internal/base.h
+48 −17 include/jemalloc/internal/chunk.h
+2 −1 include/jemalloc/internal/chunk_dss.h
+2 −3 include/jemalloc/internal/chunk_mmap.h
+4 −5 include/jemalloc/internal/ctl.h
+204 −14 include/jemalloc/internal/extent.h
+3 −2 include/jemalloc/internal/hash.h
+6 −8 include/jemalloc/internal/huge.h
+451 −230 include/jemalloc/internal/jemalloc_internal.h.in
+14 −10 include/jemalloc/internal/jemalloc_internal_decls.h
+51 −10 include/jemalloc/internal/jemalloc_internal_defs.h.in
+12 −0 include/jemalloc/internal/mutex.h
+26 −0 include/jemalloc/internal/pages.h
+134 −60 include/jemalloc/internal/private_symbols.txt
+6 −6 include/jemalloc/internal/prng.h
+48 −17 include/jemalloc/internal/prof.h
+1 −3 include/jemalloc/internal/ql.h
+4 −2 include/jemalloc/internal/qr.h
+3 −3 include/jemalloc/internal/quarantine.h
+2 −2 include/jemalloc/internal/rb.h
+244 −122 include/jemalloc/internal/rtree.h
+22 −10 include/jemalloc/internal/size_classes.sh
+33 −28 include/jemalloc/internal/stats.h
+105 −59 include/jemalloc/internal/tcache.h
+183 −60 include/jemalloc/internal/tsd.h
+73 −19 include/jemalloc/internal/util.h
+1 −1 include/jemalloc/jemalloc.sh
+16 −0 include/jemalloc/jemalloc_defs.h.in
+66 −11 include/jemalloc/jemalloc_macros.h.in
+45 −29 include/jemalloc/jemalloc_protos.h.in
+57 −2 include/jemalloc/jemalloc_typedefs.h.in
+0 −313 include/msvc_compat/C99/inttypes.h
+8 −2 include/msvc_compat/strings.h
+26 −0 include/msvc_compat/windows_extra.h
+2 −1 jemalloc.pc.in
+1,527 −630 src/arena.c
+105 −66 src/base.c
+534 −229 src/chunk.c
+20 −3 src/chunk_dss.c
+7 −142 src/chunk_mmap.c
+16 −13 src/ckh.c
+491 −245 src/ctl.c
+27 −13 src/extent.c
+274 −203 src/huge.c
+868 −417 src/jemalloc.c
+7 −3 src/mutex.c
+173 −0 src/pages.c
+222 −109 src/prof.c
+33 −10 src/quarantine.c
+80 −60 src/rtree.c
+256 −167 src/stats.c
+152 −79 src/tcache.c
+14 −7 src/tsd.c
+5 −5 src/util.c
+1 −1 src/zone.c
+8 −1 test/include/test/jemalloc_test.h.in
+4 −1 test/include/test/jemalloc_test_defs.h.in
+1 −1 test/include/test/math.h
+9 −10 test/include/test/mq.h
+26 −26 test/include/test/test.h
+1 −1 test/include/test/thd.h
+14 −3 test/include/test/timer.h
+241 −28 test/integration/chunk.c
+29 −25 test/integration/mallocx.c
+49 −0 test/integration/overflow.c
+3 −2 test/integration/rallocx.c
+29 −0 test/src/mq.c
+2 −2 test/src/test.c
+30 −2 test/src/timer.c
+14 −2 test/stress/microbench.c
+4 −4 test/unit/SFMT.c
+55 −30 test/unit/atomic.c
+4 −4 test/unit/bitmap.c
+11 −11 test/unit/ckh.c
+58 −23 test/unit/junk.c
+3 −0 test/unit/junk_alloc.c
+3 −0 test/unit/junk_free.c
+26 −0 test/unit/lg_chunk.c
+211 −3 test/unit/mallctl.c
+1 −0 test/unit/mq.c
+1 −1 test/unit/prof_active.c
+27 −2 test/unit/prof_gdump.c
+1 −2 test/unit/prof_thread_name.c
+63 −30 test/unit/rtree.c
+89 −0 test/unit/size_classes.c
+102 −39 test/unit/stats.c
+1 −0 test/unit/tsd.c