Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Shared library declarations for GDB, the GNU Debugger. |
42a6e6a0 | 2 | |
9b254dd1 | 3 | Copyright (C) 1992, 1993, 1995, 1998, 1999, 2000, 2001, 2003, 2005, 2007, |
4c38e0a4 | 4 | 2008, 2009, 2010 Free Software Foundation, Inc. |
c906108c | 5 | |
c5aa993b | 6 | This file is part of GDB. |
c906108c | 7 | |
c5aa993b JM |
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 | |
a9762ec7 | 10 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 11 | (at your option) any later version. |
c906108c | 12 | |
c5aa993b JM |
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. | |
c906108c | 17 | |
c5aa993b | 18 | You should have received a copy of the GNU General Public License |
a9762ec7 | 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c | 20 | |
010f3b2f JT |
21 | #ifndef SOLIB_H |
22 | #define SOLIB_H | |
23 | ||
104c1213 | 24 | /* Forward decl's for prototypes */ |
42a6e6a0 | 25 | struct so_list; |
c906108c | 26 | struct target_ops; |
7d522c90 | 27 | struct target_so_ops; |
6c95b8df | 28 | struct program_space; |
c906108c SS |
29 | |
30 | /* Called when we free all symtabs, to free the shared library information | |
31 | as well. */ | |
32 | ||
a14ed312 | 33 | extern void clear_solib (void); |
c906108c SS |
34 | |
35 | /* Called to add symbols from a shared library to gdb's symbol table. */ | |
36 | ||
990f9fe3 | 37 | extern void solib_add (char *, int, struct target_ops *, int); |
42a6e6a0 | 38 | extern int solib_read_symbols (struct so_list *, int); |
c906108c | 39 | |
7095b863 MS |
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. */ | |
c906108c | 44 | |
268a4a75 | 45 | extern void solib_create_inferior_hook (int from_tty); |
c906108c SS |
46 | |
47 | /* If ADDR lies in a shared library, return its name. */ | |
48 | ||
6c95b8df | 49 | extern char *solib_name_from_address (struct program_space *, CORE_ADDR); |
c906108c | 50 | |
5fd1a349 PP |
51 | /* Return 1 if ADDR lies within SOLIB. */ |
52 | ||
53 | extern int solib_contains_address_p (const struct so_list *, CORE_ADDR); | |
54 | ||
de18c1d8 JM |
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 | ||
61 | extern int solib_keep_data_in_core (CORE_ADDR vaddr, unsigned long size); | |
62 | ||
c906108c | 63 | /* Return 1 if PC lies in the dynamic symbol resolution code of the |
d7fa2ae2 | 64 | run time loader. */ |
c906108c | 65 | |
a77053c2 | 66 | extern int in_solib_dynsym_resolve_code (CORE_ADDR); |
1dd1751e | 67 | |
cb0ba49e MS |
68 | /* Discard symbols that were auto-loaded from shared libraries. */ |
69 | ||
183a2f1a | 70 | extern void no_shared_libraries (char *ignored, int from_tty); |
010f3b2f | 71 | |
7d522c90 DJ |
72 | /* Set the solib operations for GDBARCH to NEW_OPS. */ |
73 | ||
74 | extern void set_solib_ops (struct gdbarch *gdbarch, | |
75 | struct target_so_ops *new_ops); | |
76 | ||
17a37d48 PP |
77 | /* Return non-zero if NAME is the libpthread shared library. */ |
78 | ||
79 | extern int libpthread_name_p (const char *name); | |
80 | ||
010f3b2f | 81 | #endif /* SOLIB_H */ |