Skip to content

Franklin-bot/MiniMalloc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minimalloc - custom heap allocator

because malloc is too slow

  • slab allocator optimized for rapid alloc/dealloc of small objects
  • memory managed in fixed sized blocks
  • blocks cached per thread to limit concurrency overhead
  • block distribution between threads handled in global pool
  • 200+% faster than malloc

WIP Todo:

  1. block alignment
  2. mmap

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors