diff options
author | Tom Tromey <tromey@redhat.com> | 2014-07-22 10:09:27 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-07-30 08:02:50 -0600 |
commit | 5f08566b92f63e60559577dedfabf9ed517a3ddf (patch) | |
tree | bc36a8f501a9215e252d28ea84df162bc1f11123 /gdb/exec.c | |
parent | 8981c75857ec8ef645ccb4f7ccc70fccc609085d (diff) | |
download | binutils-5f08566b92f63e60559577dedfabf9ed517a3ddf.tar.gz binutils-5f08566b92f63e60559577dedfabf9ed517a3ddf.tar.bz2 binutils-5f08566b92f63e60559577dedfabf9ed517a3ddf.zip |
constify exec_file_attach
This constifies exec_file_attach and updates the rest of gdb.
Insight will need some minor tweaks after this, though it's worth
noting that I think all that hook stuff can actually just go away. I
sent a patch to this effect once, but since the Insight source
repository situation isn't currently resolved there wasn't a
convenient way to test it.
2014-07-30 Tom Tromey <tromey@redhat.com>
* corefile.c (hook_type, call_extra_exec_file_hooks)
(specify_exec_file_hook): Constify.
* exec.c (exec_file_attach): Make "filename" const.
* gdbcore.h (deprecated_exec_file_display_hook)
(specify_exec_file_hook, exec_file_attach): Constify.
* main.c (captured_main): Use catch_command_errors_const.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r-- | gdb/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/exec.c b/gdb/exec.c index 8b6f588dd8e..371fccbd231 100644 --- a/gdb/exec.c +++ b/gdb/exec.c @@ -154,7 +154,7 @@ exec_file_clear (int from_tty) we're supplying the exec pathname late for good reason.) */ void -exec_file_attach (char *filename, int from_tty) +exec_file_attach (const char *filename, int from_tty) { struct cleanup *cleanups; |