Skip to content

Commit

Permalink
v0.1.40
Browse files Browse the repository at this point in the history
  • Loading branch information
octavonce committed Apr 22, 2024
1 parent 7f0a65b commit 9069e08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mimalloc"
version = "0.1.39"
version = "0.1.40"
authors = [
"Octavian Oncescu <octavonce@gmail.com>",
"Vincent Rouillé <vincent@speedy37.fr>",
Expand Down
2 changes: 1 addition & 1 deletion libmimalloc-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libmimalloc-sys"
version = "0.1.35"
version = "0.1.36"
authors = ["Octavian Oncescu <octavonce@gmail.com>"]
edition = "2018"
repository = "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys"
Expand Down
2 changes: 1 addition & 1 deletion libmimalloc-sys/c_src/mimalloc
Submodule mimalloc updated 55 files
+1 −0 .gitattributes
+43 −11 CMakeLists.txt
+45 −0 SECURITY.md
+ bin/minject.exe
+ bin/minject32.exe
+71 −0 bin/readme.md
+1 −1 cmake/mimalloc-config-version.cmake
+1 −1 doc/doxyfile
+8 −8 doc/mimalloc-doc.h
+1 −1 docs/bench.html
+1 −0 ide/vs2017/mimalloc-override.vcxproj
+3 −0 ide/vs2017/mimalloc-override.vcxproj.filters
+1 −0 ide/vs2017/mimalloc.vcxproj
+3 −0 ide/vs2017/mimalloc.vcxproj.filters
+1 −0 ide/vs2019/mimalloc-override.vcxproj
+3 −0 ide/vs2019/mimalloc-override.vcxproj.filters
+1 −0 ide/vs2019/mimalloc.vcxproj
+3 −0 ide/vs2019/mimalloc.vcxproj.filters
+1 −0 ide/vs2022/mimalloc-override.vcxproj
+3 −0 ide/vs2022/mimalloc-override.vcxproj.filters
+7 −0 ide/vs2022/mimalloc.vcxproj
+6 −0 ide/vs2022/mimalloc.vcxproj.filters
+33 −30 include/mimalloc.h
+11 −3 include/mimalloc/atomic.h
+59 −26 include/mimalloc/internal.h
+66 −27 include/mimalloc/prim.h
+2 −0 include/mimalloc/track.h
+101 −68 include/mimalloc/types.h
+67 −38 readme.md
+7 −7 src/alloc-aligned.c
+19 −5 src/alloc-override.c
+39 −507 src/alloc.c
+263 −93 src/arena.c
+9 −5 src/bitmap.c
+2 −2 src/bitmap.h
+530 −0 src/free.c
+17 −17 src/heap.c
+29 −24 src/init.c
+273 −0 src/libc.c
+18 −74 src/options.c
+35 −44 src/os.c
+31 −20 src/page-queue.c
+55 −51 src/page.c
+251 −0 src/prim/emscripten/prim.c
+2 −0 src/prim/osx/alloc-override-zone.c
+3 −0 src/prim/prim.c
+50 −30 src/prim/unix/prim.c
+5 −0 src/prim/wasi/prim.c
+2 −2 src/segment-map.c
+205 −314 src/segment.c
+1 −0 src/static.c
+30 −30 src/stats.c
+2 −2 test/main-override.cpp
+78 −8 test/test-api.c
+13 −8 test/test-stress.c

0 comments on commit 9069e08

Please sign in to comment.