remove long long printf crash
[deliverable/binutils-gdb.git] / gdb / solib.h
index b0c6afca3f4f0ea394a50b59ac17a29ed868ceb1..995f58e0d2f0731037d2eeeb944d4faaf80052fd 100644 (file)
@@ -1,5 +1,5 @@
 /* Shared library declarations for GDB, the GNU Debugger.
-   Copyright (C) 1992 Free Software Foundation, Inc.
+   Copyright (C) 1992, 1998 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -15,7 +15,7 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #ifdef __STDC__                /* Forward decl's for prototypes */
 struct target_ops;
@@ -42,7 +42,7 @@ solib_add PARAMS ((char *, int, struct target_ops *));
    which they are linked, and sufficient information to read in their symbols
    at a later time. */
 
-#define SOLIB_CREATE_INFERIOR_HOOK     solib_create_inferior_hook
+#define SOLIB_CREATE_INFERIOR_HOOK(PID)        solib_create_inferior_hook()
 
 extern void
 solib_create_inferior_hook PARAMS((void));     /* solib.c */
@@ -50,8 +50,23 @@ solib_create_inferior_hook PARAMS((void));   /* solib.c */
 /* If we can't set a breakpoint, and it's in a shared library, just
    disable it.  */
 
-#define DISABLE_UNSETTABLE_BREAK(addr) solib_address(addr)
+#define DISABLE_UNSETTABLE_BREAK(addr) (solib_address(addr) != NULL)
 
-extern int
+extern char *
 solib_address PARAMS ((CORE_ADDR));            /* solib.c */
 
+/* If ADDR lies in a shared library, return its name.  */
+
+#define PC_SOLIB(addr) solib_address (addr)
+
+#ifdef SVR4_SHARED_LIBS
+
+/* Return 1 if PC lies in the dynamic symbol resolution code of the
+   SVR4 run time loader.  */
+
+#define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) in_svr4_dynsym_resolve_code (pc)
+
+extern int
+in_svr4_dynsym_resolve_code PARAMS ((CORE_ADDR));
+
+#endif
This page took 0.025187 seconds and 4 git commands to generate.