clinuxmemory-managementmmapsbrk

mmap vs sbrk, performance comparison


Which of these calls is faster on average? I've heard that mmap is faster for smaller allocations but I haven't heard a comparison of either. Any information on performance for these would be nice.


Solution

  • You should tag this with a particular implementation (like linux) since the answer surely varies by implementation. For now I'll assume Linux since it's the most popular.

    With that said, brk is in theory more optimizable, and in practice it runs about 10% faster on my machine. Allocating one page, these are the times I get:

    I remember hearing something along the lines of brk being able to skip locking the mmap semaphore, which would explain the discrepancy.

    Note: I updated these times after adjusting my test to make a dummy calls prior to timing, to ensure that the code would all be in the cache.