Blame sysdeps/x86/linkmap.h

Packit 6c4009
#if __WORDSIZE == 64
Packit 6c4009
struct link_map_machine
Packit 6c4009
  {
Packit 6c4009
    Elf64_Addr plt; /* Address of .plt + 0x16 */
Packit 6c4009
    Elf64_Addr gotplt; /* Address of .got + 0x18 */
Packit 6c4009
    void *tlsdesc_table; /* Address of TLS descriptor hash table.  */
Packit 6c4009
  };
Packit 6c4009
Packit 6c4009
#else
Packit 6c4009
struct link_map_machine
Packit 6c4009
  {
Packit 6c4009
    Elf32_Addr plt; /* Address of .plt + 0x16 */
Packit 6c4009
    Elf32_Addr gotplt; /* Address of .got + 0x0c */
Packit 6c4009
    void *tlsdesc_table; /* Address of TLS descriptor hash table.  */
Packit 6c4009
  };
Packit 6c4009
#endif