constify set_breakpoint_condition
authorPedro Alves <palves@redhat.com>
Mon, 9 Mar 2015 11:58:21 +0000 (11:58 +0000)
committerYao Qi <yao.qi@linaro.org>
Fri, 20 Mar 2015 17:39:24 +0000 (17:39 +0000)
gdb:

2015-03-20  Pedro Alves  <palves@redhat.com>

* breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
* breakpoint.h (set_breakpoint_condition): Update declaration.

gdb/ChangeLog
gdb/breakpoint.c
gdb/breakpoint.h

index f0abc87..04cd47d 100644 (file)
@@ -1,5 +1,10 @@
 2015-03-20  Pedro Alves  <palves@redhat.com>
 
+       * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
+       * breakpoint.h (set_breakpoint_condition): Update declaration.
+
+2015-03-20  Pedro Alves  <palves@redhat.com>
+
        * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
 
 2015-03-20  Pedro Alves  <palves@redhat.com>
index 0c000f2..13c8949 100644 (file)
@@ -957,7 +957,7 @@ get_first_locp_gte_addr (CORE_ADDR address)
 }
 
 void
-set_breakpoint_condition (struct breakpoint *b, char *exp,
+set_breakpoint_condition (struct breakpoint *b, const char *exp,
                          int from_tty)
 {
   xfree (b->cond_string);
index b85939a..562a6b6 100644 (file)
@@ -1525,7 +1525,7 @@ extern int breakpoints_should_be_inserted_now (void);
 extern void breakpoint_retire_moribund (void);
 
 /* Set break condition of breakpoint B to EXP.  */
-extern void set_breakpoint_condition (struct breakpoint *b, char *exp,
+extern void set_breakpoint_condition (struct breakpoint *b, const char *exp,
                                      int from_tty);
 
 /* Checks if we are catching syscalls or not.