diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-07-26 18:44:03 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-07-26 18:44:03 +0000 |
commit | d79ab07c4aed864feb6779a0095d67b2838b0059 (patch) | |
tree | c11ec8901f54e78ee3e69c227957a720b5667fd4 /bfd/libelf.h | |
parent | 109a640b465a0fc5f8fdb567035fa04008983e16 (diff) | |
download | gdb-d79ab07c4aed864feb6779a0095d67b2838b0059.zip gdb-d79ab07c4aed864feb6779a0095d67b2838b0059.tar.gz gdb-d79ab07c4aed864feb6779a0095d67b2838b0059.tar.bz2 |
* libelf.h (struct elf_backend_data): New field, maxpagesize.
(struct elf_obj_tdata): New field, phdr.
Diffstat (limited to 'bfd/libelf.h')
-rw-r--r-- | bfd/libelf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/libelf.h b/bfd/libelf.h index 3ef9d89..610af8a 100644 --- a/bfd/libelf.h +++ b/bfd/libelf.h @@ -81,6 +81,7 @@ struct elf_backend_data Elf_Internal_Rela *)); void (*elf_info_to_howto_rel) PARAMS ((bfd *, arelent *, Elf_Internal_Rel *)); + bfd_vma maxpagesize; void (*write_relocs) PARAMS ((bfd *, asection *, PTR)); /* @@ I really don't think this should be here. I don't know what @@ -130,6 +131,7 @@ struct elf_obj_tdata { Elf_Internal_Ehdr elf_header[1]; /* Actual data, but ref like ptr */ Elf_Internal_Shdr **elf_sect_ptr; + Elf_Internal_Phdr *phdr; struct strtab *strtab_ptr; int num_locals; int num_globals; |