Skip to content
Open
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 libmimalloc-sys/c_src/mimalloc/v3
Submodule v3 updated 84 files
+51 −33 CMakeLists.txt
+0 −25 azure-pipelines.yml
+2 −2 cmake/mimalloc-config-version.cmake
+3 −4 contrib/vcpkg/portfile.cmake
+2 −2 contrib/vcpkg/vcpkg.json
+7 −9 doc/mimalloc-doc.h
+5 −5 docs/annotated.html
+4 −4 docs/bench.html
+4 −4 docs/build.html
+4 −4 docs/classes.html
+12 −24 docs/doxygen.css
+5 −5 docs/environment.html
+4 −4 docs/functions.html
+4 −4 docs/functions_vars.html
+12 −16 docs/group__aligned.html
+18 −21 docs/group__analysis.html
+12 −15 docs/group__cpp.html
+49 −49 docs/group__extended.html
+1 −1 docs/group__extended.js
+15 −18 docs/group__heap.html
+48 −48 docs/group__malloc.html
+4 −7 docs/group__options.html
+5 −9 docs/group__posix.html
+29 −33 docs/group__typed.html
+5 −9 docs/group__zeroinit.html
+5 −5 docs/index.html
+10 −180 docs/jquery.js
+361 −367 docs/mimalloc-doc_8h_source.html
+2 −2 docs/navtree.js
+2 −2 docs/navtreedata.js
+1 −1 docs/navtreeindex0.js
+4 −4 docs/overrides.html
+4 −4 docs/pages.html
+1 −3 docs/resize.js
+1 −1 docs/search/all_9.js
+1 −1 docs/search/functions_0.js
+4 −4 docs/using.html
+2 −0 ide/vs2022/mimalloc-lib.vcxproj
+7 −1 ide/vs2022/mimalloc-lib.vcxproj.filters
+2 −0 ide/vs2022/mimalloc-override-dll.vcxproj
+7 −1 ide/vs2022/mimalloc-override-dll.vcxproj.filters
+4 −0 ide/vs2022/mimalloc-override-test.vcxproj
+2 −2 ide/vs2022/mimalloc-test-stress.vcxproj
+42 −10 include/mimalloc-stats.h
+170 −112 include/mimalloc.h
+6 −2 include/mimalloc/atomic.h
+35 −70 include/mimalloc/bits.h
+198 −164 include/mimalloc/internal.h
+192 −117 include/mimalloc/prim.h
+1 −1 include/mimalloc/track.h
+182 −92 include/mimalloc/types.h
+70 −60 readme.md
+170 −88 src/alloc-aligned.c
+7 −7 src/alloc-override.c
+312 −174 src/alloc.c
+8 −8 src/arena-meta.c
+618 −285 src/arena.c
+304 −151 src/bitmap.c
+22 −13 src/bitmap.h
+174 −132 src/free.c
+154 −700 src/heap.c
+467 −283 src/init.c
+15 −0 src/libc.c
+48 −31 src/options.c
+26 −11 src/os.c
+78 −38 src/page-map.c
+52 −45 src/page-queue.c
+165 −138 src/page.c
+6 −6 src/prim/emscripten/prim.c
+1 −1 src/prim/osx/alloc-override-zone.c
+39 −21 src/prim/unix/prim.c
+8 −8 src/prim/wasi/prim.c
+36 −30 src/prim/windows/prim.c
+2 −0 src/static.c
+280 −169 src/stats.c
+674 −0 src/theap.c
+174 −0 src/threadlocal.c
+1 −1 test/CMakeLists.txt
+3 −3 test/main-override-dep.cpp
+11 −11 test/main-override-static.c
+136 −17 test/main-override.cpp
+1 −1 test/main.c
+97 −45 test/test-api.c
+78 −29 test/test-stress.c