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.
|
show 1 more comment
feedback
|
|
You should tag this with a particular implementation (like With that said,
I remember hearing something along the lines of 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. | |||||||
feedback
|
sbrk(or worse yetbrk) in a program that might callmalloc. And since any standard library function could callmalloc, that means you cannot use the standard library, period. – R.. Apr 1 '11 at 19:41