xref: /dflybsd-src/contrib/gdb-7/bfd/elf-vxworks.h (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
1*86d7f5d3SJohn Marino /* VxWorks support for ELF
2*86d7f5d3SJohn Marino    Copyright 2005, 2006, 2007 Free Software Foundation, Inc.
3*86d7f5d3SJohn Marino 
4*86d7f5d3SJohn Marino    This file is part of BFD, the Binary File Descriptor library.
5*86d7f5d3SJohn Marino 
6*86d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or modify
7*86d7f5d3SJohn Marino    it under the terms of the GNU General Public License as published by
8*86d7f5d3SJohn Marino    the Free Software Foundation; either version 3 of the License, or
9*86d7f5d3SJohn Marino    (at your option) any later version.
10*86d7f5d3SJohn Marino 
11*86d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful,
12*86d7f5d3SJohn Marino    but WITHOUT ANY WARRANTY; without even the implied warranty of
13*86d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*86d7f5d3SJohn Marino    GNU General Public License for more details.
15*86d7f5d3SJohn Marino 
16*86d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License
17*86d7f5d3SJohn Marino    along with this program; if not, write to the Free Software
18*86d7f5d3SJohn Marino    Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19*86d7f5d3SJohn Marino    MA 02111-1307, USA.  */
20*86d7f5d3SJohn Marino 
21*86d7f5d3SJohn Marino #include "elf/common.h"
22*86d7f5d3SJohn Marino #include "elf/internal.h"
23*86d7f5d3SJohn Marino 
24*86d7f5d3SJohn Marino bfd_boolean elf_vxworks_add_symbol_hook
25*86d7f5d3SJohn Marino   (bfd *, struct bfd_link_info *, Elf_Internal_Sym *, const char **,
26*86d7f5d3SJohn Marino    flagword *, asection **, bfd_vma *);
27*86d7f5d3SJohn Marino bfd_boolean elf_vxworks_link_output_symbol_hook
28*86d7f5d3SJohn Marino   (struct bfd_link_info *, const char *name, Elf_Internal_Sym *,
29*86d7f5d3SJohn Marino    asection *, struct elf_link_hash_entry *);
30*86d7f5d3SJohn Marino bfd_boolean elf_vxworks_emit_relocs
31*86d7f5d3SJohn Marino   (bfd *, asection *, Elf_Internal_Shdr *, Elf_Internal_Rela *,
32*86d7f5d3SJohn Marino    struct elf_link_hash_entry **);
33*86d7f5d3SJohn Marino void elf_vxworks_final_write_processing (bfd *, bfd_boolean);
34*86d7f5d3SJohn Marino bfd_boolean elf_vxworks_create_dynamic_sections
35*86d7f5d3SJohn Marino   (bfd *, struct bfd_link_info *, asection **);
36*86d7f5d3SJohn Marino bfd_boolean elf_vxworks_add_dynamic_entries (bfd *, struct bfd_link_info *);
37*86d7f5d3SJohn Marino bfd_boolean elf_vxworks_finish_dynamic_entry (bfd *, Elf_Internal_Dyn *);
38*86d7f5d3SJohn Marino 
39