diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:59:37 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:59:37 +0200 |
commit | 17e00cc69eac2ec10ac69a3f85db0dffc9d73845 (patch) | |
tree | 191b439f8d7fd543620e503117dea86e0e37ac68 /elf/dl-tls.c | |
parent | 8d2f9410d5f93e0ca15c9efe48a97d04726152c2 (diff) | |
download | glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.gz glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.bz2 glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.zip |
elf: Remove internal_function attribute
Diffstat (limited to 'elf/dl-tls.c')
-rw-r--r-- | elf/dl-tls.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/elf/dl-tls.c b/elf/dl-tls.c index ddf9fb26cc..d791a5c06b 100644 --- a/elf/dl-tls.c +++ b/elf/dl-tls.c @@ -44,7 +44,6 @@ oom (void) size_t -internal_function _dl_next_tls_modid (void) { size_t result; @@ -105,7 +104,6 @@ _dl_next_tls_modid (void) size_t -internal_function _dl_count_modids (void) { /* It is rare that we have gaps; see elf/dl-open.c (_dl_open) where @@ -133,7 +131,6 @@ _dl_count_modids (void) #ifdef SHARED void -internal_function _dl_determine_tlsoffset (void) { size_t max_align = TLS_TCB_ALIGN; @@ -277,7 +274,6 @@ _dl_determine_tlsoffset (void) #endif /* SHARED */ static void * -internal_function allocate_dtv (void *result) { dtv_t *dtv; @@ -308,7 +304,6 @@ allocate_dtv (void *result) /* Get size and alignment requirements of the static TLS block. */ void -internal_function _dl_get_tls_static_info (size_t *sizep, size_t *alignp) { *sizep = GL(dl_tls_static_size); @@ -333,7 +328,6 @@ tcb_to_pointer_to_free_location (void *tcb) } void * -internal_function _dl_allocate_tls_storage (void) { void *result; |