diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-05-25 18:17:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-05-25 18:17:27 +0200 |
commit | de42613540de8d3d70b5f14a14923cab7bd694d0 (patch) | |
tree | a40b9d1870dc99f5c989e903bc71a06ccaa7b3f4 /elf/Versions | |
parent | 76d5b2f002a1243ddba06bd646249553353f4322 (diff) | |
download | glibc-de42613540de8d3d70b5f14a14923cab7bd694d0.tar glibc-de42613540de8d3d70b5f14a14923cab7bd694d0.tar.gz glibc-de42613540de8d3d70b5f14a14923cab7bd694d0.tar.bz2 glibc-de42613540de8d3d70b5f14a14923cab7bd694d0.zip |
elf: Turn _dl_printf, _dl_error_printf, _dl_fatal_printf into functions
This change makes it easier to set a breakpoint on these calls.
This also addresses the issue that including <ldsodefs.h> without
<unistd.h> does not result usable _dl_*printf macros because of the
use of the STD*_FILENO macros there.
(The private symbol for _dl_fatal_printf will go away again
once the exception handling implementation is unified between
libc and ld.so.)
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'elf/Versions')
-rw-r--r-- | elf/Versions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Versions b/elf/Versions index 3be879c4ad..be88c48e6d 100644 --- a/elf/Versions +++ b/elf/Versions @@ -58,7 +58,7 @@ ld { _dl_allocate_tls; _dl_allocate_tls_init; _dl_argv; _dl_find_dso_for_object; _dl_get_tls_static_info; _dl_deallocate_tls; _dl_make_stack_executable; - _dl_rtld_di_serinfo; _dl_starting_up; + _dl_rtld_di_serinfo; _dl_starting_up; _dl_fatal_printf; _rtld_global; _rtld_global_ro; # Only here for gdb while a better method is developed. |