* remote.c (remote_set_trace_notes): Make arguments const.
authorTom Tromey <tromey@redhat.com>
Tue, 14 May 2013 20:33:36 +0000 (20:33 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 14 May 2013 20:33:36 +0000 (20:33 +0000)
* target.c (update_current_target): Update cast.
* target.h (to_set_trace_notes): Make arguments const.

gdb/ChangeLog
gdb/remote.c
gdb/target.c
gdb/target.h

index 24668e19186493fc6efe6ba4bd7d8437fea532c5..db4d2fac057dabf6cd7319f075a61ad504a60c6f 100644 (file)
@@ -1,3 +1,9 @@
+2013-05-14  Tom Tromey  <tromey@redhat.com>
+
+       * remote.c (remote_set_trace_notes): Make arguments const.
+       * target.c (update_current_target): Update cast.
+       * target.h (to_set_trace_notes): Make arguments const.
+
 2013-05-14  Tom Tromey  <tromey@redhat.com>
 
        * go32-nat.c (go32_terminal_info): Make 'args' const.
index 7cae94061fce8a65aa89d5a1a56f0a2c75b93d73..51bf025e7e21c94a65510f43401a63122f4c0266 100644 (file)
@@ -11126,7 +11126,8 @@ remote_set_trace_buffer_size (LONGEST val)
 }
 
 static int
-remote_set_trace_notes (char *user, char *notes, char *stop_notes)
+remote_set_trace_notes (const char *user, const char *notes,
+                       const char *stop_notes)
 {
   struct remote_state *rs = get_remote_state ();
   char *reply;
index 1c0134fe23879ab964a5faba1fb5e12a1cceba23..8653dacade5508f25c46bc9a2a7f81a3e7198126 100644 (file)
@@ -946,7 +946,7 @@ update_current_target (void)
            (void (*) (LONGEST))
            target_ignore);
   de_fault (to_set_trace_notes,
-           (int (*) (char *, char *, char *))
+           (int (*) (const char *, const char *, const char *))
            return_zero);
   de_fault (to_get_tib_address,
            (int (*) (ptid_t, CORE_ADDR *))
index af1135e6f625883eb9e13b24430727764fb2620e..e937d39db01f6b282868a22d3d759468cdff2876 100644 (file)
@@ -817,7 +817,8 @@ struct target_ops
 
     /* Add/change textual notes about the trace run, returning 1 if
        successful, 0 otherwise.  */
-    int (*to_set_trace_notes) (char *user, char *notes, char* stopnotes);
+    int (*to_set_trace_notes) (const char *user, const char *notes,
+                              const char *stopnotes);
 
     /* Return the processor core that thread PTID was last seen on.
        This information is updated only when: