Import gdb-7.0
[dragonfly.git] / contrib / gdb-7 / gdb / solib.h
1 /* Shared library declarations for GDB, the GNU Debugger.
2    
3    Copyright (C) 1992, 1993, 1995, 1998, 1999, 2000, 2001, 2003, 2005, 2007,
4    2008, 2009 Free 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 */
25 struct so_list;
26 struct target_ops;
27 struct target_so_ops;
28
29 /* Called when we free all symtabs, to free the shared library information
30    as well. */
31
32 extern void clear_solib (void);
33
34 /* Called to add symbols from a shared library to gdb's symbol table. */
35
36 extern void solib_add (char *, int, struct target_ops *, int);
37 extern int solib_read_symbols (struct so_list *, int);
38
39 /* Function to be called when the inferior starts up, to discover the
40    names of shared libraries that are dynamically linked, the base
41    addresses to which they are linked, and sufficient information to
42    read in their symbols at a later time.  */
43
44 extern void solib_create_inferior_hook (void);
45
46 /* If ADDR lies in a shared library, return its name.  */
47
48 extern char *solib_name_from_address (CORE_ADDR);
49
50 /* Return 1 if ADDR lies within SOLIB.  */
51
52 extern int solib_contains_address_p (const struct so_list *, CORE_ADDR);
53
54 /* Return 1 if PC lies in the dynamic symbol resolution code of the
55    run time loader.  */
56
57 extern int in_solib_dynsym_resolve_code (CORE_ADDR);
58
59 /* Discard symbols that were auto-loaded from shared libraries. */
60
61 extern void no_shared_libraries (char *ignored, int from_tty);
62
63 /* Set the solib operations for GDBARCH to NEW_OPS.  */
64
65 extern void set_solib_ops (struct gdbarch *gdbarch,
66                            struct target_so_ops *new_ops);
67
68 /* Return non-zero if NAME is the libpthread shared library.  */
69
70 extern int libpthread_name_p (const char *name);
71
72 #endif /* SOLIB_H */