diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-03 08:44:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-03 08:44:46 +0000 |
commit | ea6a015bd78d1bc15c02f64d5e5423cbcdc86b2e (patch) | |
tree | aa51f8c6fbea5e7ef556644f34553b6fde4be133 /sysdeps/ia64/dl-machine.h | |
parent | 83f2fcbe7b26ac53dc237c37f52b699207bd9d19 (diff) | |
download | glibc-ea6a015bd78d1bc15c02f64d5e5423cbcdc86b2e.tar.gz glibc-ea6a015bd78d1bc15c02f64d5e5423cbcdc86b2e.tar.xz glibc-ea6a015bd78d1bc15c02f64d5e5423cbcdc86b2e.zip |
* sysdeps/ia64/dl-fptr.c (__ia64_make_fptr): Add const to MAP arg.
* sysdeps/ia64/dl-machine.h: Update decl.
Diffstat (limited to 'sysdeps/ia64/dl-machine.h')
-rw-r--r-- | sysdeps/ia64/dl-machine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/ia64/dl-machine.h b/sysdeps/ia64/dl-machine.h index f5eeef67db..6268fb3e53 100644 --- a/sysdeps/ia64/dl-machine.h +++ b/sysdeps/ia64/dl-machine.h @@ -52,8 +52,8 @@ struct ia64_fdesc_table struct ia64_fdesc fdesc[0]; }; -extern Elf64_Addr __ia64_make_fptr (struct link_map *, const Elf64_Sym *, - Elf64_Addr); +extern Elf64_Addr __ia64_make_fptr (const struct link_map *, + const Elf64_Sym *, Elf64_Addr); static inline void __ia64_init_bootstrap_fdesc_table (struct link_map *map) @@ -583,7 +583,7 @@ elf_machine_rela (struct link_map *map, # ifdef RTLD_BOOTSTRAP /* During startup the dynamic linker is always index 1. */ value = 1; -# else +# else /* Get the information from the link map returned by the resolv function. */ value = sym_map->l_tls_modid; |