forked from LMMS/lmms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23d6c94
commit 6060eaf
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule rpmalloc
updated
30 files
+3 −0 | .github/FUNDING.yml | |
+2 −0 | .gitignore | |
+1 −1 | BENCHMARKS.md | |
+93 −0 | CHANGELOG | |
+22 −23 | LICENSE | |
+109 −37 | README.md | |
+213 −0 | build/msvs/rpmalloc-test.vcxproj | |
+12 −2 | build/msvs/rpmalloc.sln | |
+5 −5 | build/msvs/rpmalloc.vcxproj | |
+7 −7 | build/msvs/test.vcxproj | |
+1 −1 | build/ninja/android.py | |
+75 −86 | build/ninja/clang.py | |
+15 −12 | build/ninja/gcc.py | |
+12 −2 | build/ninja/generator.py | |
+52 −38 | build/ninja/msvc.py | |
+6 −6 | build/ninja/platform.py | |
+22 −23 | build/ninja/toolchain.py | |
+1 −1 | build/ninja/version.py | |
+155 −0 | build/ninja/vslocate.py | |
+5 −5 | build/ninja/xcode.py | |
+6 −12 | configure.py | |
+281 −381 | rpmalloc/malloc.c | |
+0 −123 | rpmalloc/new.cc | |
+2,601 −1,499 | rpmalloc/rpmalloc.c | |
+256 −59 | rpmalloc/rpmalloc.h | |
+111 −0 | rpmalloc/rpnew.h | |
+201 −0 | test/main-override.cc | |
+584 −153 | test/main.c | |
+5 −13 | test/thread.c | |
+6 −2 | test/thread.h |