Skip to content

Commit

Permalink
checkout to previous state
Browse files Browse the repository at this point in the history
  • Loading branch information
WriteNaN committed May 1, 2024
1 parent c35773b commit fa04b6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vendors/linenoise
Submodule linenoise updated 1 files
+3 −4 linenoise.c
2 changes: 1 addition & 1 deletion vendors/mimalloc
Submodule mimalloc updated 59 files
+0 −1 .gitattributes
+11 −43 CMakeLists.txt
+8 −8 SECURITY.md
+12 −6 azure-pipelines.yml
+ bin/minject.exe
+ bin/minject32.exe
+0 −71 bin/readme.md
+3 −3 cmake/mimalloc-config-version.cmake
+1 −1 doc/doxyfile
+13 −13 doc/mimalloc-doc.h
+1 −1 docs/bench.html
+0 −1 ide/vs2017/mimalloc-override.vcxproj
+3 −3 ide/vs2017/mimalloc-override.vcxproj.filters
+0 −1 ide/vs2017/mimalloc.vcxproj
+3 −3 ide/vs2017/mimalloc.vcxproj.filters
+0 −1 ide/vs2019/mimalloc-override.vcxproj
+4 −4 ide/vs2019/mimalloc-override.vcxproj.filters
+0 −1 ide/vs2019/mimalloc.vcxproj
+3 −3 ide/vs2019/mimalloc.vcxproj.filters
+0 −1 ide/vs2022/mimalloc-override.vcxproj
+0 −3 ide/vs2022/mimalloc-override.vcxproj.filters
+2 −2 ide/vs2022/mimalloc-test-stress.vcxproj
+1 −8 ide/vs2022/mimalloc.vcxproj
+0 −6 ide/vs2022/mimalloc.vcxproj.filters
+28 −30 include/mimalloc.h
+3 −11 include/mimalloc/atomic.h
+122 −70 include/mimalloc/internal.h
+27 −65 include/mimalloc/prim.h
+0 −2 include/mimalloc/track.h
+137 −108 include/mimalloc/types.h
+41 −73 readme.md
+13 −8 src/alloc-aligned.c
+5 −19 src/alloc-override.c
+507 −39 src/alloc.c
+96 −263 src/arena.c
+29 −15 src/bitmap.c
+11 −2 src/bitmap.h
+0 −520 src/free.c
+31 −20 src/heap.c
+62 −36 src/init.c
+0 −273 src/libc.c
+79 −24 src/options.c
+39 −46 src/os.c
+28 −34 src/page-queue.c
+88 −74 src/page.c
+0 −251 src/prim/emscripten/prim.c
+0 −2 src/prim/osx/alloc-override-zone.c
+0 −3 src/prim/prim.c
+30 −54 src/prim/unix/prim.c
+0 −5 src/prim/wasi/prim.c
+2 −2 src/segment-map.c
+1,183 −795 src/segment.c
+0 −1 src/static.c
+35 −32 src/stats.c
+1 −1 test/CMakeLists.txt
+29 −3 test/main-override-static.c
+101 −15 test/main-override.cpp
+8 −78 test/test-api.c
+18 −17 test/test-stress.c
2 changes: 1 addition & 1 deletion vendors/mir
Submodule mir updated 50 files
+1 −0 .clang-format
+1 −1 .github/workflows/AMD64-Linux-OSX-Windows-test.yml
+1 −1 .github/workflows/aarch64-test.yml
+0 −17 .github/workflows/apple-aarch64-test.yml
+1 −1 .github/workflows/ppc64le-test.yml
+1 −1 .github/workflows/riscv64-test.yml
+1 −1 .github/workflows/s390x-test.yml
+0 −2 .gitignore
+0 −6 CMakeLists.txt
+6 −31 GNUmakefile
+4 −6 MIR.md
+6 −40 README.md
+0 −2 c-benchmarks/run-benchmarks.sh
+0 −1 c-tests/new/issue353-2.c
+0 −1 c-tests/new/issue353-2.c.expectrc
+0 −1 c-tests/new/issue353.c
+0 −1 c-tests/new/issue353.c.expectrc
+0 −1 c-tests/new/issue354.c
+0 −1 c-tests/new/issue354.c.expectrc
+0 −7 c-tests/new/issue355.c
+0 −4 c-tests/new/issue360.c
+0 −1 c-tests/new/issue360.c.expectrc
+0 −17 c-tests/new/issue361.c
+0 −1 c-tests/new/issue361.c.nomach
+0 −4 c-tests/new/issue362.c
+0 −1 c-tests/new/issue362.c.expectrc
+0 −4 c-tests/new/issue364.c
+0 −1 c-tests/new/issue364.c.expectrc
+0 −1 c-tests/new/issue365.c
+0 −1 c-tests/new/issue365.c.expectrc
+0 −2 c-tests/new/issue366-2.c
+0 −1 c-tests/new/issue366-2.c.expectrc
+0 −4 c-tests/new/issue366.c
+0 −1 c-tests/new/issue366.c.expectrc
+0 −6 c-tests/runtests.sh
+2 −2 c2mir/aarch64/caarch64-ABI-code.c
+23 −48 c2mir/c2mir.c
+4 −3 c2mir/riscv64/criscv64-ABI-code.c
+5 −4 c2mir/x86_64/cx86_64-ABI-code.c
+3 −3 mir-aarch64.c
+0 −348 mir-bin-run.c
+4 −3 mir-gen.c
+1 −1 mir-ppc64.c
+1 −1 mir-riscv64.c
+1 −2 mir-s390x.c
+1 −0 mir-tests/hello.c
+5 −5 mir-x86_64.c
+33 −37 mir.c
+6 −8 mir.h
+30 −150 mir2c/mir2c.c

0 comments on commit fa04b6c

Please sign in to comment.