summaryrefslogtreecommitdiffstats
path: root/sys/sys/imgact_elf.h
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2005-12-18 04:52:37 +0000
committermarcel <marcel@FreeBSD.org>2005-12-18 04:52:37 +0000
commit0a081d09f4f7db02d1baa4889eb218e2eff4097a (patch)
treec8421e79058b3959c09903a706bc77c9de3e7087 /sys/sys/imgact_elf.h
parent3394701ae17fa6037d9dc3f0da623707988cb02a (diff)
downloadFreeBSD-src-0a081d09f4f7db02d1baa4889eb218e2eff4097a.zip
FreeBSD-src-0a081d09f4f7db02d1baa4889eb218e2eff4097a.tar.gz
Make our ELF64 type definitions match standards. In particular this
means: o Remove Elf64_Quarter, o Redefine Elf64_Half to be 16-bit, o Redefine Elf64_Word to be 32-bit, o Add Elf64_Xword and Elf64_Sxword for 64-bit entities, o Use Elf_Size in MI code to abstract the difference between Elf32_Word and Elf64_Word. o Add Elf_Ssize as the signed counterpart of Elf_Size. MFC after: 2 weeks
Diffstat (limited to 'sys/sys/imgact_elf.h')
-rw-r--r--sys/sys/imgact_elf.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/sys/imgact_elf.h b/sys/sys/imgact_elf.h
index 3454787..8bb4cc2 100644
--- a/sys/sys/imgact_elf.h
+++ b/sys/sys/imgact_elf.h
@@ -44,15 +44,15 @@ struct thread;
* stack fixup routine.
*/
typedef struct {
- Elf_Sword execfd;
- Elf_Word phdr;
- Elf_Word phent;
- Elf_Word phnum;
- Elf_Word pagesz;
- Elf_Word base;
- Elf_Word flags;
- Elf_Word entry;
- Elf_Word trace;
+ Elf_Ssize execfd;
+ Elf_Size phdr;
+ Elf_Size phent;
+ Elf_Size phnum;
+ Elf_Size pagesz;
+ Elf_Size base;
+ Elf_Size flags;
+ Elf_Size entry;
+ Elf_Size trace;
} __ElfN(Auxargs);
typedef struct {
OpenPOWER on IntegriCloud