* breakpoint.c (set_raw_breakpoint): Remove static modifier.
This commit is contained in:
parent
30b66ecc73
commit
63c252f8d0
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2009-07-07 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||||
|
|
||||||
|
* breakpoint.c (set_raw_breakpoint): Remove static modifier.
|
||||||
|
|
||||||
2009-07-07 Tom Tromey <tromey@redhat.com>
|
2009-07-07 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* c-lang.c (convert_octal): Only allow 3 octal digits.
|
* c-lang.c (convert_octal): Only allow 3 octal digits.
|
||||||
|
|
|
@ -105,7 +105,8 @@ static void break_command_1 (char *, int, int);
|
||||||
|
|
||||||
static void mention (struct breakpoint *);
|
static void mention (struct breakpoint *);
|
||||||
|
|
||||||
static struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
|
/* This function is used in gdbtk sources and thus can not be made static. */
|
||||||
|
struct breakpoint *set_raw_breakpoint (struct gdbarch *gdbarch,
|
||||||
struct symtab_and_line,
|
struct symtab_and_line,
|
||||||
enum bptype);
|
enum bptype);
|
||||||
|
|
||||||
|
@ -4396,6 +4397,7 @@ static void free_bp_location (struct bp_location *loc)
|
||||||
|
|
||||||
/* Helper to set_raw_breakpoint below. Creates a breakpoint
|
/* Helper to set_raw_breakpoint below. Creates a breakpoint
|
||||||
that has type BPTYPE and has no locations as yet. */
|
that has type BPTYPE and has no locations as yet. */
|
||||||
|
/* This function is used in gdbtk sources and thus can not be made static. */
|
||||||
|
|
||||||
static struct breakpoint *
|
static struct breakpoint *
|
||||||
set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
|
set_raw_breakpoint_without_location (struct gdbarch *gdbarch,
|
||||||
|
@ -4480,7 +4482,7 @@ get_sal_arch (struct symtab_and_line sal)
|
||||||
prior to completing the initialization of the breakpoint. If this
|
prior to completing the initialization of the breakpoint. If this
|
||||||
should happen, a bogus breakpoint will be left on the chain. */
|
should happen, a bogus breakpoint will be left on the chain. */
|
||||||
|
|
||||||
static struct breakpoint *
|
struct breakpoint *
|
||||||
set_raw_breakpoint (struct gdbarch *gdbarch,
|
set_raw_breakpoint (struct gdbarch *gdbarch,
|
||||||
struct symtab_and_line sal, enum bptype bptype)
|
struct symtab_and_line sal, enum bptype bptype)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue