-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule ringbuffer
updated
6 files
+55 −0 | DOCUMENTATION.md | |
+11 −7 | README.md | |
+1 −1 | cmake/process_project.txt | |
+62 −46 | include/ringbuffer/ringbuffer.h | |
+22 −9 | src/lib/ringbuffer.cpp | |
+1 −0 | src/test/test_seq.cpp |
Submodule rpmalloc
updated
30 files
+3 −0 | .github/FUNDING.yml | |
+2 −0 | .gitignore | |
+2 −2 | BENCHMARKS.md | |
+99 −0 | CHANGELOG | |
+22 −23 | LICENSE | |
+108 −36 | 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 | |
+17 −2 | build/ninja/generator.py | |
+52 −38 | build/ninja/msvc.py | |
+6 −6 | build/ninja/platform.py | |
+30 −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 | |
+309 −380 | rpmalloc/malloc.c | |
+0 −123 | rpmalloc/new.cc | |
+2,628 −1,495 | rpmalloc/rpmalloc.c | |
+256 −59 | rpmalloc/rpmalloc.h | |
+111 −0 | rpmalloc/rpnew.h | |
+201 −0 | test/main-override.cc | |
+584 −153 | test/main.c | |
+10 −15 | test/thread.c | |
+6 −2 | test/thread.h |