* breakpoint.c (set_raw_breakpoint): Remove static modifier.
authorPierre Muller <muller@sourceware.org>
Tue, 7 Jul 2009 22:21:09 +0000 (22:21 +0000)
committerPierre Muller <muller@sourceware.org>
Tue, 7 Jul 2009 22:21:09 +0000 (22:21 +0000)
gdb/ChangeLog
gdb/breakpoint.c

index 7634ce28a134f6a7f833f026df3ed22db90032c0..a406d57a74cdd3741dedbca354b3b230445a2af3 100644 (file)
@@ -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.
index cbcc7df4377d1cf74098443f3f14b7c7e2e58407..3a18c8fd981b605b0733cf647b2c529cbd57486d 100644 (file)
@@ -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)
 {
This page took 0.045935 seconds and 4 git commands to generate.