]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/x86/linkmap.h
po: Incorporate translations (sr)
[thirdparty/glibc.git] / sysdeps / x86 / linkmap.h
CommitLineData
9dcafc55
UD
1#if __WORDSIZE == 64
2struct link_map_machine
3 {
4 Elf64_Addr plt; /* Address of .plt + 0x16 */
5 Elf64_Addr gotplt; /* Address of .got + 0x18 */
c9ff0187 6 void *tlsdesc_table; /* Address of TLS descriptor hash table. */
9dcafc55
UD
7 };
8
9#else
10struct link_map_machine
11 {
12 Elf32_Addr plt; /* Address of .plt + 0x16 */
13 Elf32_Addr gotplt; /* Address of .got + 0x0c */
c9ff0187 14 void *tlsdesc_table; /* Address of TLS descriptor hash table. */
9dcafc55
UD
15 };
16#endif