constify monitor_open
authorTom Tromey <tromey@redhat.com>
Mon, 21 Jul 2014 22:56:28 +0000 (16:56 -0600)
committerTom Tromey <tromey@redhat.com>
Thu, 24 Jul 2014 17:30:02 +0000 (11:30 -0600)
This constifies an argument to monitor_open.

2014-07-24  Tom Tromey  <tromey@redhat.com>

* monitor.c (monitor_open): Make "args" const.
* monitor.h (monitor_open): Update.

gdb/ChangeLog
gdb/monitor.c
gdb/monitor.h

index aaa3307..f6c7022 100644 (file)
@@ -1,5 +1,10 @@
 2014-07-24  Tom Tromey  <tromey@redhat.com>
 
+       * monitor.c (monitor_open): Make "args" const.
+       * monitor.h (monitor_open): Update.
+
+2014-07-24  Tom Tromey  <tromey@redhat.com>
+
        * maint.c (match_bfd_flags): Make "string" const.
        (print_bfd_section_info): Remove casts.
        (print_objfile_section_info): Make "string" const.
index 61f0dff..788bca0 100644 (file)
@@ -713,7 +713,7 @@ compile_pattern (char *pattern, struct re_pattern_buffer *compiled_pattern,
    for communication.  */
 
 void
-monitor_open (char *args, struct monitor_ops *mon_ops, int from_tty)
+monitor_open (const char *args, struct monitor_ops *mon_ops, int from_tty)
 {
   char *name;
   char **p;
index 07caf97..52521c8 100644 (file)
@@ -239,7 +239,8 @@ struct monitor_ops
 
 #define SREC_SIZE 160
 
-extern void monitor_open (char *args, struct monitor_ops *ops, int from_tty);
+extern void monitor_open (const char *args, struct monitor_ops *ops,
+                         int from_tty);
 extern void monitor_close (struct target_ops *self);
 extern char *monitor_supply_register (struct regcache *regcache,
                                      int regno, char *valstr);