Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```