mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 18:44:20 +08:00
* breakpoint.c (set_raw_breakpoint): Remove static modifier.
This commit is contained in:
parent
30b66ecc73
commit
63c252f8d0
@ -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>
|
||||
|
||||
* 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 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,
|
||||
enum bptype);
|
||||
|
||||
@ -4396,6 +4397,7 @@ static void free_bp_location (struct bp_location *loc)
|
||||
|
||||
/* Helper to set_raw_breakpoint below. Creates a breakpoint
|
||||
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 *
|
||||
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
|
||||
should happen, a bogus breakpoint will be left on the chain. */
|
||||
|
||||
static struct breakpoint *
|
||||
struct breakpoint *
|
||||
set_raw_breakpoint (struct gdbarch *gdbarch,
|
||||
struct symtab_and_line sal, enum bptype bptype)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user