aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2020-10-08 10:57:09 +0200
committerFlorian Weimer <fweimer@redhat.com>2020-10-08 11:00:42 +0200
commit72d36ffd7db55ae599f4c77feb0eae25a0f3714e (patch)
tree3a769d277965e956b728888d4d8c90b1c3eeeed9 /include
parentc0e9ddf59e73e21afe15fca4e94cf7b4b7359bf2 (diff)
downloadglibc-72d36ffd7db55ae599f4c77feb0eae25a0f3714e.zip
glibc-72d36ffd7db55ae599f4c77feb0eae25a0f3714e.tar.gz
glibc-72d36ffd7db55ae599f4c77feb0eae25a0f3714e.tar.bz2
elf: Implement __rtld_malloc_is_complete
In some cases, it is difficult to determine the kind of malloc based on the execution context, so a function to determine that is helpful. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/rtld-malloc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/rtld-malloc.h b/include/rtld-malloc.h
index b026a32..9266ec5 100644
--- a/include/rtld-malloc.h
+++ b/include/rtld-malloc.h
@@ -66,6 +66,10 @@ realloc (void *ptr, size_t size)
implementation. */
void __rtld_malloc_init_stubs (void) attribute_hidden;
+/* Return false if the active malloc is the ld.so minimal malloc, true
+ if it is the full implementation from libc.so. */
+_Bool __rtld_malloc_is_complete (void) attribute_hidden;
+
/* Called shortly before the final self-relocation (when RELRO
variables are still writable) to activate the real malloc
implementation. MAIN_MAP is the link map of the executable. */