diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-07-07 03:43:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-07-07 03:43:47 +0000 |
commit | 28ed895fdc303b2a793506bb1fcdd35d5fd14e70 (patch) | |
tree | 1385a2d5f0e844e26990b9da92b784ca73c73000 /libebl/libebl.h | |
parent | 1d3a64d70c8f2aec1fc3ae26d124823c1ef304a9 (diff) | |
download | elfutils-28ed895fdc303b2a793506bb1fcdd35d5fd14e70.tar.gz |
merge of 2d5572f10b65f0ac7fdf54361b4dae41ebbd51d0
and fda3a25581b7bfac581504e9e887e9b97f234f86
Diffstat (limited to 'libebl/libebl.h')
-rw-r--r-- | libebl/libebl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libebl/libebl.h b/libebl/libebl.h index c27dfd4a..6969c550 100644 --- a/libebl/libebl.h +++ b/libebl/libebl.h @@ -192,6 +192,9 @@ extern bool ebl_copy_reloc_p (Ebl *ebl, int reloc); /* Check whether given relocation is a no-op relocation. */ extern bool ebl_none_reloc_p (Ebl *ebl, int reloc); +/* Check whether given relocation is a relative relocation. */ +extern bool ebl_relative_reloc_p (Ebl *ebl, int reloc); + /* Check whether section should be stripped. */ extern bool ebl_section_strip_p (Ebl *ebl, const GElf_Ehdr *ehdr, const GElf_Shdr *shdr, const char *name, @@ -200,6 +203,9 @@ extern bool ebl_section_strip_p (Ebl *ebl, const GElf_Ehdr *ehdr, /* Check if backend uses a bss PLT in this file. */ extern bool ebl_bss_plt_p (Ebl *ebl, GElf_Ehdr *ehdr); +/* Return size of entry in SysV-style hash table. */ +extern int ebl_sysvhash_entrysize (Ebl *ebl); + /* Return location expression to find return value given a DW_TAG_subprogram, DW_TAG_subroutine_type, or similar DIE describing function itself (whose DW_AT_type attribute describes its return type). |