Skip/xfail x86_64-*-nacl* for eh4/pr12570a tests
[deliverable/binutils-gdb.git] / gdb / solib.h
... / ...
CommitLineData
1/* Shared library declarations for GDB, the GNU Debugger.
2
3 Copyright (C) 1992-1993, 1995, 1998-2001, 2003, 2005, 2007-2012 Free
4 Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21#ifndef SOLIB_H
22#define SOLIB_H
23
24/* Forward decl's for prototypes */
25struct so_list;
26struct target_ops;
27struct target_so_ops;
28struct program_space;
29
30/* Called when we free all symtabs, to free the shared library information
31 as well. */
32
33extern void clear_solib (void);
34
35/* Called to add symbols from a shared library to gdb's symbol table. */
36
37extern void solib_add (char *, int, struct target_ops *, int);
38extern int solib_read_symbols (struct so_list *, int);
39
40/* Function to be called when the inferior starts up, to discover the
41 names of shared libraries that are dynamically linked, the base
42 addresses to which they are linked, and sufficient information to
43 read in their symbols at a later time. */
44
45extern void solib_create_inferior_hook (int from_tty);
46
47/* If ADDR lies in a shared library, return its name. */
48
49extern char *solib_name_from_address (struct program_space *, CORE_ADDR);
50
51/* Return 1 if ADDR lies within SOLIB. */
52
53extern int solib_contains_address_p (const struct so_list *, CORE_ADDR);
54
55/* Return whether the data starting at VADDR, size SIZE, must be kept
56 in a core file for shared libraries loaded before "gcore" is used
57 to be handled correctly when the core file is loaded. This only
58 applies when the section would otherwise not be kept in the core
59 file (in particular, for readonly sections). */
60
61extern int solib_keep_data_in_core (CORE_ADDR vaddr, unsigned long size);
62
63/* Return 1 if PC lies in the dynamic symbol resolution code of the
64 run time loader. */
65
66extern int in_solib_dynsym_resolve_code (CORE_ADDR);
67
68/* Discard symbols that were auto-loaded from shared libraries. */
69
70extern void no_shared_libraries (char *ignored, int from_tty);
71
72/* Set the solib operations for GDBARCH to NEW_OPS. */
73
74extern void set_solib_ops (struct gdbarch *gdbarch,
75 struct target_so_ops *new_ops);
76
77/* Return non-zero if NAME is the libpthread shared library. */
78
79extern int libpthread_name_p (const char *name);
80
81/* Look up symbol from both symbol table and dynamic string table. */
82
83extern CORE_ADDR gdb_bfd_lookup_symbol (bfd *abfd,
84 int (*match_sym) (asymbol *, void *),
85 void *data);
86
87/* Look up symbol from symbol table. */
88
89extern CORE_ADDR gdb_bfd_lookup_symbol_from_symtab (bfd *abfd,
90 int (*match_sym) (asymbol *,
91 void *),
92 void *data);
93
94#endif /* SOLIB_H */
This page took 0.034026 seconds and 4 git commands to generate.