What are the disadvantages of allocating memory using mmap
(with MAP_PRIVATE and MAP_ANONYMOUS) than using malloc
? For data in function scope, I would use stack memory anyway and therefore not malloc.
One disadvantage that comes to mind is for dynamic data structures such as trees and linked lists, where you frequently require to allocate and deallocate small chunks of data. Using mmap
there would be expensive for two reasons, one for allocating at granularity of 4096 bytes and the other for requiring to make a system call.
But in other scenarios, do you think malloc
is better than mmap
? Secondly, am I overestimating disadvantage of mmap
for dynamic data structures?
One advantage of mmap
over malloc
I can think of is that memory is immediately returned to the OS, when you do munmap
, whereas with malloc/free
, I guess memory uptil the data segment break point is never returned, but kept for reusage.
Yes, malloc
is better than mmap
. It's much easier to use, much more fine-grained and much more portable. In the end, it will call mmap
anyway.
If you start doing everyday memory management with mmap
, you'll want to implement some way of parceling it out in smaller chunks than pages and you will end up reimplementing malloc
-- in a suboptimal way, probably.