(bkpt_names): Remove SOLIB_BKPT_NAME, never defined.
(enable_break): Remove test of BKPT_AT_SYMBOL.
+2008-08-04 Stan Shebs <stan@codesourcery.com>
+
+ * solib-svr4.c (BKPT_AT_SYMBOL): Remove, always defined.
+ (bkpt_names): Remove SOLIB_BKPT_NAME, never defined.
+ (enable_break): Remove test of BKPT_AT_SYMBOL.
+
2008-08-02 Keith Seitz <keiths@redhat.com>
* acinclude.m4: Include ../config/tcl.m4 to pick up
NULL
};
-#define BKPT_AT_SYMBOL 1
-
-#if defined (BKPT_AT_SYMBOL)
static char *bkpt_names[] =
{
-#ifdef SOLIB_BKPT_NAME
- SOLIB_BKPT_NAME, /* Prefer configured name if it exists. */
-#endif
"_start",
"__start",
"main",
NULL
};
-#endif
static char *main_name_list[] =
{
static int
enable_break (void)
{
-#ifdef BKPT_AT_SYMBOL
-
struct minimal_symbol *msymbol;
char **bkpt_namep;
asection *interp_sect;
return 1;
}
}
-#endif /* BKPT_AT_SYMBOL */
-
return 0;
}