diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-23 02:04:28 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-23 02:04:28 +0000 |
commit | f5d44ba06b007de0a5b890878296d33af3d992dd (patch) | |
tree | 9401a0fd0dd5a36490f02b8e79de01a9a254511a /bfd/elf-bfd.h | |
parent | e7d838cb85f9d429ed170eb6f1e1052dd687e880 (diff) | |
download | gdb-f5d44ba06b007de0a5b890878296d33af3d992dd.zip gdb-f5d44ba06b007de0a5b890878296d33af3d992dd.tar.gz gdb-f5d44ba06b007de0a5b890878296d33af3d992dd.tar.bz2 |
2002-06-23 Alan Modra <amodra@bigpond.net.au>
* elflink.h: Comment typo fixes.
2002-06-23 H.J. Lu <hjl@gnu.org>
* elf-bfd.h (elf_link_loaded_list): New structure.
(elf_link_hash_table): Add "loaded".
* elf.c (_bfd_elf_link_hash_table_init): Initialize "loaded".
* elflink.h (elf_link_check_versioned_symbol): New function.
(elf_link_output_extsym): Call elf_link_check_versioned_symbol.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 28dbe83..8624240 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -223,6 +223,12 @@ struct elf_link_local_dynamic_entry Elf_Internal_Sym isym; }; +struct elf_link_loaded_list +{ + struct elf_link_loaded_list *next; + bfd *abfd; +}; + enum elf_link_info_type { ELF_INFO_TYPE_NONE, @@ -297,6 +303,9 @@ struct elf_link_hash_table /* Cached start, size and alignment of PT_TLS segment. */ struct elf_link_tls_segment *tls_segment; + + /* A linked list of BFD's loaded in the link. */ + struct elf_link_loaded_list *loaded; }; /* Look up an entry in an ELF linker hash table. */ |