diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-10 13:40:22 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-10 16:54:57 +0200 |
commit | 2449ae7b2da24c9940962304a3e44bc80e389265 (patch) | |
tree | c2cfdcfc3a90731d2da26dda79984eda95e9079e /elf/Versions | |
parent | f87cc2bfba9b844da48a63441c6099342b1551c7 (diff) | |
download | glibc-2449ae7b2da24c9940962304a3e44bc80e389265.tar.gz glibc-2449ae7b2da24c9940962304a3e44bc80e389265.tar.xz glibc-2449ae7b2da24c9940962304a3e44bc80e389265.zip |
ld.so: Introduce struct dl_exception
This commit separates allocating and raising exceptions. This simplifies catching and re-raising them because it is no longer necessary to make a temporary, on-stack copy of the exception message.
Diffstat (limited to 'elf/Versions')
-rw-r--r-- | elf/Versions | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/elf/Versions b/elf/Versions index e65f2fac20..79ffaf73d2 100644 --- a/elf/Versions +++ b/elf/Versions @@ -28,6 +28,7 @@ libc { __libc_dlclose; __libc_dlopen_mode; __libc_dlsym; # Internal error handling support. Interposes the functions in ld.so. + _dl_signal_exception; _dl_catch_exception; _dl_signal_error; _dl_catch_error; } } @@ -68,7 +69,11 @@ ld { # Pointer protection. __pointer_chk_guard; + # Internal error handling support. + _dl_exception_create; _dl_exception_create_format; _dl_exception_free; + # Internal error handling support. Interposed by libc.so. + _dl_signal_exception; _dl_catch_exception; _dl_signal_error; _dl_catch_error; # Set value of a tunable. |