* Makefile.in (diststuff): Make all-doc; diststuff target does not
[deliverable/binutils-gdb.git] / gdb / solib.h
index f11470bd5223f557972b68d386daa0d4d8904164..959e59ee5f2fbd7792c3d6c33982b4f61e881f9e 100644 (file)
@@ -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;
@@ -50,10 +50,11 @@ 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 */
 
-struct section_table *
-find_pc_section_from_so_list PARAMS ((CORE_ADDR pc)); /* solib.c */
+/* If ADDR lies in a shared library, return its name.  */
+
+#define PC_SOLIB(addr) solib_address (addr)
This page took 0.023781 seconds and 4 git commands to generate.