aboutsummaryrefslogtreecommitdiff
path: root/gdb/exec.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-09-12 18:39:07 -0600
committerTom Tromey <tom@tromey.com>2017-09-27 08:44:49 -0600
commit1d8b34a7a233d89938fd173389f7884aa7d105b3 (patch)
tree2822134aec724b165393be86690f7deba6c399d7 /gdb/exec.c
parent442019e118afb6bdbae490c0b072e8f024f2d9a2 (diff)
downloadgdb-1d8b34a7a233d89938fd173389f7884aa7d105b3.zip
gdb-1d8b34a7a233d89938fd173389f7884aa7d105b3.tar.gz
gdb-1d8b34a7a233d89938fd173389f7884aa7d105b3.tar.bz2
Constify some commands in exec.c, plus symbol_file_command
Note that this commit also changes deprecated_file_changed_hook -- not used in the tree, but Insight will require a (presumably minor) change. gdb/ChangeLog 2017-09-27 Tom Tromey <tom@tromey.com> * symfile.c (symbol_file_command): Constify. * gdbcore.h (deprecated_file_changed_hook): Constify. * exec.c (deprecated_file_changed_hook, exec_file_command) (file_command): Constify. * defs.h (symbol_file_command): Constify.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r--gdb/exec.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/gdb/exec.c b/gdb/exec.c
index d20afdc..6eda9b2 100644
--- a/gdb/exec.c
+++ b/gdb/exec.c
@@ -45,12 +45,10 @@
#include "solist.h"
#include <algorithm>
-void (*deprecated_file_changed_hook) (char *);
+void (*deprecated_file_changed_hook) (const char *);
/* Prototypes for local functions */
-static void file_command (char *, int);
-
static void set_section_command (char *, int);
static void exec_files_info (struct target_ops *);
@@ -398,7 +396,7 @@ exec_file_attach (const char *filename, int from_tty)
If ARGS is NULL, we just want to close the exec file. */
static void
-exec_file_command (char *args, int from_tty)
+exec_file_command (const char *args, int from_tty)
{
char *filename;
@@ -433,7 +431,7 @@ exec_file_command (char *args, int from_tty)
command was added? */
static void
-file_command (char *arg, int from_tty)
+file_command (const char *arg, int from_tty)
{
/* FIXME, if we lose on reading the symbol file, we should revert
the exec file, but that's rough. */