Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jewishlewish/c-arenas
Region-based memory management for C
https://github.com/jewishlewish/c-arenas
Last synced: about 1 month ago
JSON representation
Region-based memory management for C
- Host: GitHub
- URL: https://github.com/jewishlewish/c-arenas
- Owner: JewishLewish
- License: mit
- Created: 2023-03-01T23:51:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T01:11:03.000Z (almost 2 years ago)
- Last Synced: 2023-12-30T17:54:55.325Z (about 1 year ago)
- Language: C
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C-Arenas
Region-based memory management for C# Advantages
## Faster Array Memory Freeing
Code used: https://github.com/JewishLewish/C-Arenas/blob/main/benchmark_array_allocs.c
```C
Benchmark: Allocate 1,000,000 Times With Arrays
Sample count: 90
-----------------------------------------------
C's Method
Time taken: 0.064878 seconds
Regional's Method
Time taken: 0.006144 seconds
-----------------------------------------------
Regional Memory Manager is 10.56% faster
```