Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
url = https://github.com/microsoft/mimalloc.git
[submodule "libmimalloc-sys/c_src/mimalloc3"]
path = libmimalloc-sys/c_src/mimalloc3
url = https://github.com/microsoft/mimalloc.git
branch = dev3
url = https://github.com/napi-rs/mimalloc.git
branch = fix/first-thread-done
2 changes: 1 addition & 1 deletion libmimalloc-sys/c_src/mimalloc3
Submodule mimalloc3 updated 64 files
+10 −0 .github/dependabot.yaml
+4 −4 .github/workflows/release.yaml
+1 −1 .github/workflows/stale.yaml
+174 −117 .github/workflows/test.yaml
+130 −45 CMakeLists.txt
+1 −1 cmake/mimalloc-config-version.cmake
+1 −1 contrib/vcpkg/portfile.cmake
+1 −1 contrib/vcpkg/vcpkg.json
+57 −13 doc/mimalloc-doc.h
+1 −1 docs/annotated.html
+1 −1 docs/bench.html
+1 −1 docs/build.html
+1 −1 docs/classes.html
+4 −1 docs/doxygen_crawl.html
+1 −1 docs/environment.html
+1 −1 docs/functions.html
+1 −1 docs/functions_vars.html
+1 −1 docs/group__aligned.html
+1 −1 docs/group__analysis.html
+1 −1 docs/group__arenas.html
+54 −14 docs/group__constantsize.html
+1 −0 docs/group__constantsize.js
+1 −1 docs/group__cpp.html
+47 −3 docs/group__extended.html
+1 −0 docs/group__extended.js
+1 −1 docs/group__heap.html
+31 −2 docs/group__malloc.html
+1 −0 docs/group__malloc.js
+1 −1 docs/group__options.html
+44 −28 docs/group__posix.html
+1 −1 docs/group__posix.js
+2 −2 docs/group__stats.html
+1 −1 docs/group__subproc.html
+1 −1 docs/group__theap.html
+5 −5 docs/group__typed.html
+1 −1 docs/group__zeroinit.html
+1 −1 docs/index.html
+565 −555 docs/mimalloc-doc_8h_source.html
+1 −1 docs/modes.html
+1 −1 docs/navtreedata.js
+36 −36 docs/navtreeindex0.js
+3 −0 docs/navtreeindex1.js
+1 −1 docs/overrides.html
+1 −1 docs/pages.html
+231 −228 docs/search/all_9.js
+162 −159 docs/search/functions_0.js
+1 −1 docs/tools.html
+2 −2 docs/topics.html
+1 −1 docs/using.html
+12 −4 include/mimalloc.h
+6 −2 include/mimalloc/atomic.h
+42 −30 include/mimalloc/internal.h
+1 −1 include/mimalloc/prim-tls.h
+7 −8 include/mimalloc/types.h
+95 −32 readme.md
+50 −36 src/alloc.c
+26 −16 src/arena.c
+86 −79 src/free.c
+11 −5 src/init.c
+10 −3 src/options.c
+10 −1 src/os.c
+11 −9 src/prim/unix/prim.c
+1 −1 src/theap.c
+34 −0 test/test-api.c
Loading