Add missing include to bsd-kvm.c for gdb_abspath
[deliverable/binutils-gdb.git] / gdb / solib.h
CommitLineData
c906108c 1/* Shared library declarations for GDB, the GNU Debugger.
42a6e6a0 2
42a4f53d 3 Copyright (C) 1992-2019 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
010f3b2f
JT
20#ifndef SOLIB_H
21#define SOLIB_H
22
104c1213 23/* Forward decl's for prototypes */
42a6e6a0 24struct so_list;
c906108c 25struct target_ops;
7d522c90 26struct target_so_ops;
6c95b8df 27struct program_space;
c906108c 28
b15cc25c
PA
29#include "symfile-add-flags.h"
30
51457a05
MAL
31/* List of known shared objects */
32#define so_list_head current_program_space->so_list
33
c906108c 34/* Called when we free all symtabs, to free the shared library information
c378eb4e 35 as well. */
c906108c 36
a14ed312 37extern void clear_solib (void);
c906108c 38
c378eb4e 39/* Called to add symbols from a shared library to gdb's symbol table. */
c906108c 40
e696b3ad 41extern void solib_add (const char *, int, int);
5b89c67a 42extern bool solib_read_symbols (struct so_list *, symfile_add_flags);
c906108c 43
7095b863
MS
44/* Function to be called when the inferior starts up, to discover the
45 names of shared libraries that are dynamically linked, the base
46 addresses to which they are linked, and sufficient information to
47 read in their symbols at a later time. */
c906108c 48
268a4a75 49extern void solib_create_inferior_hook (int from_tty);
c906108c
SS
50
51/* If ADDR lies in a shared library, return its name. */
52
6c95b8df 53extern char *solib_name_from_address (struct program_space *, CORE_ADDR);
c906108c 54
5b89c67a 55/* Return true if ADDR lies within SOLIB. */
5fd1a349 56
5b89c67a 57extern bool solib_contains_address_p (const struct so_list *, CORE_ADDR);
5fd1a349 58
de18c1d8
JM
59/* Return whether the data starting at VADDR, size SIZE, must be kept
60 in a core file for shared libraries loaded before "gcore" is used
61 to be handled correctly when the core file is loaded. This only
62 applies when the section would otherwise not be kept in the core
63 file (in particular, for readonly sections). */
64
5b89c67a 65extern bool solib_keep_data_in_core (CORE_ADDR vaddr, unsigned long size);
de18c1d8 66
5b89c67a 67/* Return true if PC lies in the dynamic symbol resolution code of the
d7fa2ae2 68 run time loader. */
c906108c 69
5b89c67a 70extern bool in_solib_dynsym_resolve_code (CORE_ADDR);
1dd1751e 71
c378eb4e 72/* Discard symbols that were auto-loaded from shared libraries. */
cb0ba49e 73
0b39b52e 74extern void no_shared_libraries (const char *ignored, int from_tty);
010f3b2f 75
7d522c90
DJ
76/* Set the solib operations for GDBARCH to NEW_OPS. */
77
78extern void set_solib_ops (struct gdbarch *gdbarch,
3641da11 79 const struct target_so_ops *new_ops);
7d522c90 80
51457a05
MAL
81/* Synchronize GDB's shared object list with inferior's.
82
83 Extract the list of currently loaded shared objects from the
84 inferior, and compare it with the list of shared objects currently
85 in GDB's so_list_head list. Edit so_list_head to bring it in sync
86 with the inferior's new list.
87
88 If we notice that the inferior has unloaded some shared objects,
89 free any symbolic info GDB had read about those shared objects.
90
91 Don't load symbolic info for any new shared objects; just add them
92 to the list, and leave their symbols_loaded flag clear.
93
94 If FROM_TTY is non-null, feel free to print messages about what
95 we're doing. */
96
97extern void update_solib_list (int from_tty);
98
5b89c67a 99/* Return true if NAME is the libpthread shared library. */
17a37d48 100
5b89c67a 101extern bool libpthread_name_p (const char *name);
17a37d48 102
cb457ae2
YQ
103/* Look up symbol from both symbol table and dynamic string table. */
104
105extern CORE_ADDR gdb_bfd_lookup_symbol (bfd *abfd,
3953f15c
SM
106 int (*match_sym) (const asymbol *,
107 const void *),
108 const void *data);
cb457ae2
YQ
109
110/* Look up symbol from symbol table. */
111
e009ee71 112extern CORE_ADDR gdb_bfd_lookup_symbol_from_symtab (bfd *abfd,
3953f15c
SM
113 int (*match_sym)
114 (const asymbol *,
115 const void *),
116 const void *data);
cb457ae2 117
f9e14852
GB
118/* Enable or disable optional solib event breakpoints as appropriate. */
119
120extern void update_solib_breakpoints (void);
121
122/* Handle an solib event by calling solib_add. */
123
124extern void handle_solib_event (void);
125
010f3b2f 126#endif /* SOLIB_H */
This page took 1.863391 seconds and 4 git commands to generate.