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 /sysdeps/tile | |
parent | 8d2f9410d5f93e0ca15c9efe48a97d04726152c2 (diff) | |
download | glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.gz glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.xz glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.zip |
elf: Remove internal_function attribute
Diffstat (limited to 'sysdeps/tile')
-rw-r--r-- | sysdeps/tile/dl-lookupcfg.h | 2 | ||||
-rw-r--r-- | sysdeps/tile/dl-machine.h | 2 | ||||
-rw-r--r-- | sysdeps/tile/dl-runtime.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/tile/dl-lookupcfg.h b/sysdeps/tile/dl-lookupcfg.h index 18a816ec89..c829823680 100644 --- a/sysdeps/tile/dl-lookupcfg.h +++ b/sysdeps/tile/dl-lookupcfg.h @@ -22,6 +22,6 @@ struct link_map; -void internal_function _dl_unmap (struct link_map *map); +void _dl_unmap (struct link_map *map); #define DL_UNMAP(map) _dl_unmap (map) diff --git a/sysdeps/tile/dl-machine.h b/sysdeps/tile/dl-machine.h index ae92673ac8..f7af7c3848 100644 --- a/sysdeps/tile/dl-machine.h +++ b/sysdeps/tile/dl-machine.h @@ -255,7 +255,7 @@ elf_machine_plt_value (struct link_map *map, const ElfW(Rela) *reloc, } /* Support notifying the simulator about new objects. */ -void internal_function _dl_after_load (struct link_map *l); +void _dl_after_load (struct link_map *l); #define DL_AFTER_LOAD _dl_after_load /* Names of the architecture-specific auditing callback functions. */ diff --git a/sysdeps/tile/dl-runtime.c b/sysdeps/tile/dl-runtime.c index 3aced41643..c58e6192bd 100644 --- a/sysdeps/tile/dl-runtime.c +++ b/sysdeps/tile/dl-runtime.c @@ -94,7 +94,7 @@ dl_realpath (const char *name, char *rpath) } /* Support notifying the simulator about new objects. */ -void internal_function +void _dl_after_load (struct link_map *l) { int shift; @@ -151,7 +151,7 @@ sim_dlclose (ElfW(Addr) map_start) #undef DLPUTC } -void internal_function +void _dl_unmap (struct link_map *map) { sim_dlclose (map->l_map_start); |