Monthly Archives: October 2024

Implementando malloc() e free() — dividindo blocos grandes

When implementing malloc(), it is important to consider the size of the allocated blocks. For example, reusing blocks too big for smaller requests cause memory waste. How to solve that? Let’s see on this post of our series on malloc() and free().