Constify add_path and friends
authorTom Tromey <tom@tromey.com>
Wed, 11 Oct 2017 23:04:29 +0000 (17:04 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 7 Nov 2017 20:59:09 +0000 (13:59 -0700)
This constifies add_path, mod_path, and directory_switch.

gdb/ChangeLog
2017-11-07  Tom Tromey  <tom@tromey.com>

* source.c (directory_switch, mod_path, add_path): Constify.
* defs.h (add_path, mod_path, directory_switch): Constify.
* mi/mi-cmd-env.c (env_mod_path): Constify.

gdb/ChangeLog
gdb/defs.h
gdb/mi/mi-cmd-env.c
gdb/source.c

index cf9dbc503aaea5ef38f94eb5a6420c5f1b141d78..d8d956f35e51003f9e086ec2ea7e8979bd6e1dbf 100644 (file)
@@ -1,3 +1,9 @@
+2017-11-07  Tom Tromey  <tom@tromey.com>
+
+       * source.c (directory_switch, mod_path, add_path): Constify.
+       * defs.h (add_path, mod_path, directory_switch): Constify.
+       * mi/mi-cmd-env.c (env_mod_path): Constify.
+
 2017-11-07  Tom Tromey  <tom@tromey.com>
 
        * infcmd.c (strip_bg_char): Return gdb::unique_xmalloc_ptr.
index cf596028571175437391a50bff202a749298bce1..675c239af251f3304ad80610958a52a2a521508e 100644 (file)
@@ -350,11 +350,11 @@ extern int openp (const char *, int, const char *, int, char **);
 
 extern int source_full_path_of (const char *, char **);
 
-extern void mod_path (char *, char **);
+extern void mod_path (const char *, char **);
 
-extern void add_path (char *, char **, int);
+extern void add_path (const char *, char **, int);
 
-extern void directory_switch (char *, int);
+extern void directory_switch (const char *, int);
 
 extern char *source_path;
 
index 0d08bb89a9319265455f570990d6ecabf3792b22..436462ac5f4cd5b2e6faee46abd4391358b2d325 100644 (file)
@@ -32,8 +32,6 @@
 #include "top.h"
 #include <sys/stat.h>
 
-static void env_mod_path (char *dirname, char **which_path);
-
 static const char path_var_name[] = "PATH";
 static char *orig_path = NULL;
 
@@ -94,7 +92,7 @@ mi_cmd_env_cd (const char *command, char **argv, int argc)
 }
 
 static void
-env_mod_path (char *dirname, char **which_path)
+env_mod_path (const char *dirname, char **which_path)
 {
   if (dirname == 0 || dirname[0] == '\0')
     return;
index aa672fde45eac39f803c05fd164ec6ce84e02012..4ae2ba251b7afd4878b91c1aa2ef27eccba8eba1 100644 (file)
@@ -444,7 +444,7 @@ directory_command (char *dirname, int from_tty)
    This will not be quoted so we must not treat spaces as separators.  */
 
 void
-directory_switch (char *dirname, int from_tty)
+directory_switch (const char *dirname, int from_tty)
 {
   add_path (dirname, &source_path, 0);
 }
@@ -452,7 +452,7 @@ directory_switch (char *dirname, int from_tty)
 /* Add zero or more directories to the front of an arbitrary path.  */
 
 void
-mod_path (char *dirname, char **which_path)
+mod_path (const char *dirname, char **which_path)
 {
   add_path (dirname, which_path, 1);
 }
@@ -464,7 +464,7 @@ mod_path (char *dirname, char **which_path)
    as space or tab.  */
 
 void
-add_path (char *dirname, char **which_path, int parse_separators)
+add_path (const char *dirname, char **which_path, int parse_separators)
 {
   char *old = *which_path;
   int prefix = 0;