1 /* COFF (SVR3) Shared library declarations for GDB, the GNU Debugger.
2 Copyright 1992, 1993, 1998, 1999, 2000, 2003 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Forward decl's for prototypes */
24 /* Called when we free all symtabs, to free the shared library information
28 #define CLEAR_SOLIB coff_clear_solib
30 extern void coff_clear_solib (void);
33 /* Called to add symbols from a shared library to gdb's symbol table. */
35 #define SOLIB_ADD(filename, from_tty, targ, readsyms) \
36 coff_solib_add (filename, from_tty, targ, readsyms)
38 extern void coff_solib_add (char *, int, struct target_ops *, int);
40 /* Function to be called when the inferior starts up, to discover the names
41 of shared libraries that are dynamically linked, the base addresses to
42 which they are linked, and sufficient information to read in their symbols
45 #define SOLIB_CREATE_INFERIOR_HOOK(PID) coff_solib_create_inferior_hook()
47 extern void coff_solib_create_inferior_hook (void); /* solib.c */
49 /* Function to be called to remove the connection between debugger and
50 dynamic linker that was established by SOLIB_CREATE_INFERIOR_HOOK.
51 (This operation does not remove shared library information from
52 the debugger, as CLEAR_SOLIB does.)
54 This functionality is presently not implemented for this target.
56 #define SOLIB_REMOVE_INFERIOR_HOOK(PID) (0)
58 /* This function is called by the "catch load" command. It allows
59 the debugger to be notified by the dynamic linker when a specified
60 library file (or any library file, if filename is NULL) is loaded.
62 Presently, this functionality is not implemented.
64 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
65 error("catch of library loads/unloads not yet implemented on this platform")
67 /* This function is called by the "catch unload" command. It allows
68 the debugger to be notified by the dynamic linker when a specified
69 library file (or any library file, if filename is NULL) is unloaded.
71 Presently, this functionality is not implemented.
73 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
74 error("catch of library loads/unloads not yet implemented on this platform")
76 /* This function returns TRUE if the dynamic linker has just reported
79 This function must be used only when the inferior has stopped in
80 the dynamic linker hook, or undefined results are guaranteed.
82 Presently, this functionality is not implemented.
85 #define SOLIB_HAVE_LOAD_EVENT(pid) \
86 error("catch of library loads/unloads not yet implemented on this platform")
89 #define SOLIB_HAVE_LOAD_EVENT(pid) \
92 /* This function returns a pointer to the string representation of the
93 pathname of the dynamically-linked library that has just been loaded.
95 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
96 or undefined results are guaranteed.
98 This string's contents are only valid immediately after the inferior
99 has stopped in the dynamic linker hook, and becomes invalid as soon
100 as the inferior is continued. Clients should make a copy of this
101 string if they wish to continue the inferior and then access the string.
103 Presently, this functionality is not implemented.
107 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \
108 error("catch of library loads/unloads not yet implemented on this platform")
111 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \
114 /* This function returns TRUE if the dynamic linker has just reported
115 an unload of a library.
117 This function must be used only when the inferior has stopped in
118 the dynamic linker hook, or undefined results are guaranteed.
120 Presently, this functionality is not implemented.
123 #define SOLIB_HAVE_UNLOAD_EVENT(pid) \
124 error("catch of library loads/unloads not yet implemented on this platform")
127 #define SOLIB_HAVE_UNLOAD_EVENT(pid) \
130 /* This function returns a pointer to the string representation of the
131 pathname of the dynamically-linked library that has just been unloaded.
133 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is TRUE,
134 or undefined results are guaranteed.
136 This string's contents are only valid immediately after the inferior
137 has stopped in the dynamic linker hook, and becomes invalid as soon
138 as the inferior is continued. Clients should make a copy of this
139 string if they wish to continue the inferior and then access the string.
141 Presently, this functionality is not implemented.
144 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \
145 error("catch of library loads/unloads not yet implemented on this platform")
148 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \
151 /* This function returns TRUE if pc is the address of an instruction that
152 lies within the dynamic linker (such as the event hook, or the dld
155 This function must be used only when a dynamic linker event has been
156 caught, and the inferior is being stepped out of the hook, or undefined
157 results are guaranteed.
159 Presently, this functionality is not implemented.
163 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) \
164 error("catch of library loads/unloads not yet implemented on this platform")
167 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) \
170 /* This function must be called when the inferior is killed, and the program
171 restarted. This is not the same as CLEAR_SOLIB, in that it doesn't discard
174 Presently, this functionality is not implemented.
176 #define SOLIB_RESTART() \
179 /* If we can't set a breakpoint, and it's in a shared library, just
183 #define DISABLE_UNSETTABLE_BREAK(addr) coff_solib_address(addr)
185 extern int solib_address (CORE_ADDR); /* solib.c */