From: Ulrich Drepper Date: Sun, 28 Oct 2007 00:59:34 +0000 (+0000) Subject: * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined. X-Git-Tag: cvs/fedora-glibc-20071212T1051~92 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=666aa0201b5e68d13d24d7e9151c7d548d5cbbda;p=thirdparty%2Fglibc.git * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined. --- diff --git a/ChangeLog b/ChangeLog index 97c86fef44d..7bee03ecbee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-10-27 Ulrich Drepper + + * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined. + 2007-10-26 Ulrich Drepper * nscd/cache.c (prune_cache): Move test for modified file outside diff --git a/malloc/arena.c b/malloc/arena.c index ce643355670..4cbb4dc3074 100644 --- a/malloc/arena.c +++ b/malloc/arena.c @@ -160,6 +160,10 @@ static void (*save_free_hook) (__malloc_ptr_t __ptr, __const __malloc_ptr_t); static Void_t* save_arena; +#ifdef ATFORK_MEM +ATFORK_MEM; +#endif + /* Magic value for the thread-specific arena pointer when malloc_atfork() is in use. */