Skip to content

IainT52/Dynamic-Memory-Allocator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic Memory Allocator: Multi-Pool

A simple Dynamic Memory Allocator that implements malloc() calloc() realloc()
and free() as multi-pool allocators. Meaning they reuse blocks of memory previously
requested in a system call (sbrk()). They will only request more memory from the
operating system when they have no more blocks of memory in their current "pool".

Unfortunately, there is no visualization to view how memory blocks are being
allocated and called from the operating system. However, as a future project I may try
to incorporate a visualization using javascript and some helpful plugins.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published