Is malloc re-entrant?
|
|
I read somewhere that if you compile with -pthreads, malloc becomes thread safe. I´m pretty sure its implementation dependant though, since malloc is ANSI C and threads are not. If we are talking gcc:
Another opinion, more insightful
http://linux.derkeiler.com/Newsgroups/comp.os.linux.development.apps/2005-07/0323.html |
|||||
|
|
Question: "is malloc reentrant"? None of the common versions of malloc allow you to reenter it (e.g. from signal handler). Note that a reentrant routine may not use locks, and almost all malloc versions in existence do use locks (which makes them thread-safe), or global/static variables (which makes them thread-unsafe and non-reentrant). All the answers so far answer "is malloc thread-safe?", which is entirely different question. To that question the answer is it depends on your runtime library, and possibly on the compiler flags you use. On any modern UNIX you'll get a thread-safe malloc by default. On Windows, use |
|||||
|
|
Here is an excerpt from malloc.c of glibc : Thread-safety: thread-safe unless NO_THREADS is defined assuming NO_THREADS is not defined by default, malloc is thread safe at least on linux. |
|||
|
|
|
It depends on which implementation of the C runtime library you're using. If you're using MSVC for example then there's a compiler option which lets you specify which version of the library you want to build with (i.e. a run-time library that supports multi-threading by being tread-safe, or not). |
|||
|
|
|
No, it is not thread-safe. There may actually be a |
|||
|
|
|||||||||||||||||||||
|