summaryrefslogtreecommitdiff
path: root/sysdeps/s390/linkmap.h
blob: 283615b99ae3d405ad1d58a2a8437669a0f9bb07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#if __WORDSIZE == 64
struct link_map_machine
  {
    Elf64_Addr plt; /* Address of .plt + 0x2e */
    const Elf64_Rela *jmprel; /* Address of first JMP_SLOT reloc */
  };
#else
struct link_map_machine
  {
    Elf32_Addr plt; /* Address of .plt + 0x2c */
    const Elf32_Rela *jmprel; /* Address of first JMP_SLOT reloc */
  };
#endif