memory
- brk, sbrk, mmap: what malloc hidesmalloc calls brk for small allocations and mmap for large ones. What really happens under the hood, syscall by syscall.
- The 4 allocators every C developer should knowBump, pool, free-list, arena — four C allocators to replace malloc where it counts. Principle, use case, and minimal code for each.