Skip to content
/ malloc Public

Simple 64-bit first-fit user-space memory allocator

Notifications You must be signed in to change notification settings

mzr/malloc

Repository files navigation

Simple 64-bit user-space memory allocator

make malloc.so to compile shared library. export LD_PRELOAD=$PWD/malloc.so to make linker to preload it.

Architesture

  • first-fit
  • minimal block data size: 16B
  • scalng by 8B
  • everything aligned to at least 8B

About

Simple 64-bit first-fit user-space memory allocator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published