summaryrefslogtreecommitdiff
path: root/elf/dl-tls.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-13 21:11:54 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-13 21:11:54 +0200
commit3012cfb0d26653cbd6ee0c8e4875d3df806bd473 (patch)
tree4bb2d288ab6f1f5b472777c3e8fb5040bea8284e /elf/dl-tls.c
parent52bcdf267b2c97c90852f1598c8c29d0494cb3b5 (diff)
ld.so: Remove internal_function attribute from various functions
These functions are invoked from other DSOs and should therefore use the standard calling convention.
Diffstat (limited to 'elf/dl-tls.c')
-rw-r--r--elf/dl-tls.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/elf/dl-tls.c b/elf/dl-tls.c
index 5aba33b3fa..ddf9fb26cc 100644
--- a/elf/dl-tls.c
+++ b/elf/dl-tls.c
@@ -439,7 +439,6 @@ _dl_resize_dtv (dtv_t *dtv)
void *
-internal_function
_dl_allocate_tls_init (void *result)
{
if (result == NULL)
@@ -532,7 +531,6 @@ _dl_allocate_tls_init (void *result)
rtld_hidden_def (_dl_allocate_tls_init)
void *
-internal_function
_dl_allocate_tls (void *mem)
{
return _dl_allocate_tls_init (mem == NULL
@@ -543,7 +541,6 @@ rtld_hidden_def (_dl_allocate_tls)
void
-internal_function
_dl_deallocate_tls (void *tcb, bool dealloc_tcb)
{
dtv_t *dtv = GET_DTV (tcb);