Skip to content

Patea4/mymalloc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Growth Policy: When additional memory is needed the allocator requests more memory from the OS of size:

ceil(max(CHUNK_SIZE, request_size_total) / PAGE_SIZE) * PAGE_SIZE

This is done to request the minimum amount of pages possible from the OS.

CHUNK_SIZE is defined to be 64KiB, which is the minimum amount of memory to request from the OS.

About

Dynamic memory allocator implemented in C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors