I wrote a minimal memory allocator in C
SMRTR summary
A C memory allocator that recreates malloc, calloc, realloc, and free using sbrk for small allocations and mmap for large ones. Includes block splitting and coalescing optimizations but isn't thread-safe.
SMRTR provides this summary for quick context. The original article belongs to Hacker News.
Read the original article