summaryrefslogtreecommitdiffstats
path: root/sys/kern/link_elf_obj.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/link_elf_obj.c')
-rw-r--r--sys/kern/link_elf_obj.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/link_elf_obj.c b/sys/kern/link_elf_obj.c
index 012d5b7..575a706 100644
--- a/sys/kern/link_elf_obj.c
+++ b/sys/kern/link_elf_obj.c
@@ -258,7 +258,7 @@ link_elf_link_preload(linker_class_t cls, const char *filename,
case SHT_PROGBITS:
case SHT_NOBITS:
#ifdef __amd64__
- case SHT_AMD64_UNWIND:
+ case SHT_X86_64_UNWIND:
#endif
ef->nprogtab++;
break;
@@ -331,13 +331,13 @@ link_elf_link_preload(linker_class_t cls, const char *filename,
case SHT_PROGBITS:
case SHT_NOBITS:
#ifdef __amd64__
- case SHT_AMD64_UNWIND:
+ case SHT_X86_64_UNWIND:
#endif
ef->progtab[pb].addr = (void *)shdr[i].sh_addr;
if (shdr[i].sh_type == SHT_PROGBITS)
ef->progtab[pb].name = "<<PROGBITS>>";
#ifdef __amd64__
- else if (shdr[i].sh_type == SHT_AMD64_UNWIND)
+ else if (shdr[i].sh_type == SHT_X86_64_UNWIND)
ef->progtab[pb].name = "<<UNWIND>>";
#endif
else
@@ -597,7 +597,7 @@ link_elf_load_file(linker_class_t cls, const char *filename,
case SHT_PROGBITS:
case SHT_NOBITS:
#ifdef __amd64__
- case SHT_AMD64_UNWIND:
+ case SHT_X86_64_UNWIND:
#endif
ef->nprogtab++;
break;
@@ -712,7 +712,7 @@ link_elf_load_file(linker_class_t cls, const char *filename,
case SHT_PROGBITS:
case SHT_NOBITS:
#ifdef __amd64__
- case SHT_AMD64_UNWIND:
+ case SHT_X86_64_UNWIND:
#endif
alignmask = shdr[i].sh_addralign - 1;
mapsize += alignmask;
@@ -782,7 +782,7 @@ link_elf_load_file(linker_class_t cls, const char *filename,
case SHT_PROGBITS:
case SHT_NOBITS:
#ifdef __amd64__
- case SHT_AMD64_UNWIND:
+ case SHT_X86_64_UNWIND:
#endif
alignmask = shdr[i].sh_addralign - 1;
mapbase += alignmask;
@@ -797,7 +797,7 @@ link_elf_load_file(linker_class_t cls, const char *filename,
} else if (shdr[i].sh_type == SHT_PROGBITS)
ef->progtab[pb].name = "<<PROGBITS>>";
#ifdef __amd64__
- else if (shdr[i].sh_type == SHT_AMD64_UNWIND)
+ else if (shdr[i].sh_type == SHT_X86_64_UNWIND)
ef->progtab[pb].name = "<<UNWIND>>";
#endif
else
@@ -823,7 +823,7 @@ link_elf_load_file(linker_class_t cls, const char *filename,
ef->progtab[pb].sec = i;
if (shdr[i].sh_type == SHT_PROGBITS
#ifdef __amd64__
- || shdr[i].sh_type == SHT_AMD64_UNWIND
+ || shdr[i].sh_type == SHT_X86_64_UNWIND
#endif
) {
error = vn_rdwr(UIO_READ, nd.ni_vp,
OpenPOWER on IntegriCloud