klalloc is a heap memory allocator using sequential fit and slab algorithms.
- Using sequential fit and slab algorithms for allocation
- Calculation and display of memory reserved
show_alloc_mem()
- Provides the standard functionality of the
malloc
,free
, andrealloc
functions
- Cloning this repository
git clone https://github.com/kllaster/klalloc.git
cd
into the root directorycd klalloc
- Creating lib from source code
make
- Take the library from the
bin/
project directory and include theinclude/klalloc.h
file in your project