diff options
author | Tom Tromey <tromey@redhat.com> | 2014-06-06 13:38:16 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-06-16 10:29:17 -0600 |
commit | 7bc112c1b9bc6e6346e2afff9174fe4adbce909f (patch) | |
tree | 94d0bc92a585689d50a787af8f24782898f43d65 /gdb/procfs.c | |
parent | fee354eeef0b5bb9b1b799e2ce313fc805b2af1a (diff) | |
download | gdb-7bc112c1b9bc6e6346e2afff9174fe4adbce909f.zip gdb-7bc112c1b9bc6e6346e2afff9174fe4adbce909f.tar.gz gdb-7bc112c1b9bc6e6346e2afff9174fe4adbce909f.tar.bz2 |
constify to_info_proc and friends
This makes a parameter of to_info_proc const and then fixes up some
fallout, including parameters in a couple of gdbarch methods.
I could not test the procfs.c change. I verified it by inspection.
If this causes an error here, it will be trivial to fix.
2014-06-16 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_info_proc>: Make parameter
const.
(target_info_proc): Update.
* target.c (target_info_proc): Make "args" const.
* procfs.c (procfs_info_proc): Update.
* linux-tdep.c (linux_info_proc): Update.
(linux_core_info_proc_mappings): Make "args" const.
(linux_core_info_proc): Update.
* gdbarch.sh (info_proc, core_info_proc): Make "args" const.
* gdbarch.c: Rebuild.
* gdbarch.h: Rebuild.
* corelow.c (core_info_proc): Update.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 6a2aef8..cbb44ce 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -148,7 +148,7 @@ static char * procfs_make_note_section (struct target_ops *self, static int procfs_can_use_hw_breakpoint (struct target_ops *self, int, int, int); -static void procfs_info_proc (struct target_ops *, char *, +static void procfs_info_proc (struct target_ops *, const char *, enum info_proc_what); #if defined (PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64) @@ -5141,7 +5141,7 @@ info_proc_mappings (procinfo *pi, int summary) /* Implement the "info proc" command. */ static void -procfs_info_proc (struct target_ops *ops, char *args, +procfs_info_proc (struct target_ops *ops, const char *args, enum info_proc_what what) { struct cleanup *old_chain; |