Just the question stated, how can I use mmap() to allocate a memory in heap? This is my only option because malloc() is not a reentrant function.
|
|
||||
|
Why do you need reentrancy? The only time it's needed is for calling a function from a signal handler; otherwise, thread-safety is just as good. Both If you want to use
The portable but ugly version is:
Note that |
|||||||||||||||||||||
|
Make a simple slab allocatorAlthough allocating memory in a signal handler1 does seem like something best avoided, it certainly can be done. No, you can't directly use malloc(). If you want it to be in the heap then mmap won't work either. My suggestion is that you make a special-purpose slab allocator based on malloc. Decide exactly what size of object you want and preallocate some number of them. Allocate them initially with malloc() and save them for concurrent use later. There are intrinsically reentrant queue-and-un-queue functions that you can use to obtain and release these blocks. If they only need to be managed from the signal handler then even that isn't necessary. Problem solved! 1. And if you are not doing that then it seems like you have an embedded system or could just use malloc(). |
|||
|
|
malloc()isn't reentrant, wouldn't it be easier to just write a wrapper with a lock instead of rolling your own entire memory system? – Carl Norum Jan 24 '11 at 6:22