mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
stdlib: Do not use GLIBC_PRIVATE ABI for errno in libc_nonshared.a
Using TLS directly introduces a GLIBC_PRIVATE ABI dependency into libc_nonshared.a, and thus indirectly into applications. Adding the !defined LIBC_NONSHARED condition deactivates direct TLS access, and libc_nonshared.a code switches to using __errno_location, like application code. Currently, this has no effect because there is no code in libc_nonshared.a that accesses errno. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
parent
6efd6cd46b
commit
7d6e30b4b4
@ -20,7 +20,7 @@
|
||||
# define errno rtld_errno
|
||||
extern int rtld_errno attribute_hidden;
|
||||
|
||||
# elif IS_IN_LIB && !IS_IN (rtld)
|
||||
# elif IS_IN_LIB && !IS_IN (rtld) && !defined LIBC_NONSHARED
|
||||
|
||||
# undef errno
|
||||
# if IS_IN (libc)
|
||||
|
Loading…
Reference in New Issue
Block a user