Skip to content

simple C implementation of a memory pool that helps you from using free(z) way too often

Notifications You must be signed in to change notification settings

kulminaator/mempool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mempool

simple C implementation of a memory pool that helps you from using free(z) way too often

long story short: you want to allocate memory over time in a certain block of logic (e.g. level loading in a game, just a function somewhere, user process handling), but want to free() it afterwards without memory leaks. well here it is, a pretty minimal utility to do that. code is pretty much self explaining along with the demo, have fun and dont waste time on memory leaks.

improvement ideas are always welcome.

About

simple C implementation of a memory pool that helps you from using free(z) way too often

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages