aboutsummaryrefslogtreecommitdiff
path: root/malloc/arena.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2020-12-16 15:09:52 +0100
committerFlorian Weimer <fweimer@redhat.com>2020-12-16 15:13:40 +0100
commit29a4db291b1282f4088e549391d86b6b470f22be (patch)
tree7aeec66b84cf95b0402816617a8f9b9c0418d2d3 /malloc/arena.c
parente7570f4131a6af9405af7b4fd1c31de807e7cf68 (diff)
downloadglibc-29a4db291b1282f4088e549391d86b6b470f22be.zip
glibc-29a4db291b1282f4088e549391d86b6b470f22be.tar.gz
glibc-29a4db291b1282f4088e549391d86b6b470f22be.tar.bz2
malloc: Use __libc_initial to detect an inner libc
The secondary/non-primary/inner libc (loaded via dlmopen, LD_AUDIT, static dlopen) must not use sbrk to allocate member because that would interfere with allocations in the outer libc. On Linux, this does not matter because sbrk itself was changed to fail in secondary libcs. _dl_addr occasionally shows up in profiles, but had to be used before because __libc_multiple_libs was unreliable. So this change achieves a slight reduction in startup time. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'malloc/arena.c')
-rw-r--r--malloc/arena.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/malloc/arena.c b/malloc/arena.c
index 202daf1..3c9c0ec 100644
--- a/malloc/arena.c
+++ b/malloc/arena.c
@@ -294,14 +294,11 @@ ptmalloc_init (void)
__malloc_initialized = 0;
#ifdef SHARED
- /* In case this libc copy is in a non-default namespace, never use brk.
- Likewise if dlopened from statically linked program. */
- Dl_info di;
- struct link_map *l;
-
- if (_dl_open_hook != NULL
- || (_dl_addr (ptmalloc_init, &di, &l, NULL) != 0
- && l->l_ns != LM_ID_BASE))
+ /* In case this libc copy is in a non-default namespace, never use
+ brk. Likewise if dlopened from statically linked program. The
+ generic sbrk implementation also enforces this, but it is not
+ used on Hurd. */
+ if (!__libc_initial)
__morecore = __failing_morecore;
#endif