From 503ebb2c1de7f1710f8f9633feb60821f6aac552 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 14 May 2013 20:32:15 +0000 Subject: [PATCH] * go32-nat.c (go32_terminal_info): Make 'args' const. * inferior.h (child_terminal_info): Update. * inflow.c (child_terminal_info): Make 'args' const. * target.c (default_terminal_info): Make 'args' const. (debug_to_terminal_save_ours): Likewise. * target.h (struct target_ops) : Make argument const. --- gdb/ChangeLog | 10 ++++++++++ gdb/go32-nat.c | 2 +- gdb/inferior.h | 2 +- gdb/inflow.c | 2 +- gdb/target.c | 8 +++----- gdb/target.h | 2 +- 6 files changed, 17 insertions(+), 9 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ed5ee03..24668e1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,13 @@ +2013-05-14 Tom Tromey + + * go32-nat.c (go32_terminal_info): Make 'args' const. + * inferior.h (child_terminal_info): Update. + * inflow.c (child_terminal_info): Make 'args' const. + * target.c (default_terminal_info): Make 'args' const. + (debug_to_terminal_save_ours): Likewise. + * target.h (struct target_ops) : Make argument + const. + 2013-05-13 Tom Tromey * gcore.c (create_gcore_bfd): Make 'filename' const. diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index ea6d1ca..0d9bb9d 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -876,7 +876,7 @@ go32_terminal_init (void) } static void -go32_terminal_info (char *args, int from_tty) +go32_terminal_info (const char *args, int from_tty) { printf_unfiltered ("Inferior's terminal is in %s mode.\n", !inf_mode_valid diff --git a/gdb/inferior.h b/gdb/inferior.h index 196d033..2a5770dd 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -175,7 +175,7 @@ extern void default_print_registers_info (struct gdbarch *gdbarch, struct frame_info *frame, int regnum, int all); -extern void child_terminal_info (char *, int); +extern void child_terminal_info (const char *, int); extern void term_info (char *, int); diff --git a/gdb/inflow.c b/gdb/inflow.c index 5146b3a..79a99d1 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -563,7 +563,7 @@ term_info (char *arg, int from_tty) } void -child_terminal_info (char *args, int from_tty) +child_terminal_info (const char *args, int from_tty) { struct inferior *inf; struct terminal_info *tinfo; diff --git a/gdb/target.c b/gdb/target.c index 8eadd63..1c0134f 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -46,7 +46,7 @@ static void target_info (char *, int); -static void default_terminal_info (char *, int); +static void default_terminal_info (const char *, int); static int default_watchpoint_addr_within_range (struct target_ops *, CORE_ADDR, CORE_ADDR, int); @@ -142,8 +142,6 @@ static void debug_to_terminal_save_ours (void); static void debug_to_terminal_ours (void); -static void debug_to_terminal_info (char *, int); - static void debug_to_load (char *, int); static int debug_to_can_run (void); @@ -557,7 +555,7 @@ noprocess (void) } static void -default_terminal_info (char *args, int from_tty) +default_terminal_info (const char *args, int from_tty) { printf_unfiltered (_("No saved terminal information.\n")); } @@ -4787,7 +4785,7 @@ debug_to_terminal_save_ours (void) } static void -debug_to_terminal_info (char *arg, int from_tty) +debug_to_terminal_info (const char *arg, int from_tty) { debug_target.to_terminal_info (arg, from_tty); diff --git a/gdb/target.h b/gdb/target.h index 993e7b0..af1135e 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -499,7 +499,7 @@ struct target_ops void (*to_terminal_ours_for_output) (void); void (*to_terminal_ours) (void); void (*to_terminal_save_ours) (void); - void (*to_terminal_info) (char *, int); + void (*to_terminal_info) (const char *, int); void (*to_kill) (struct target_ops *); void (*to_load) (char *, int); void (*to_create_inferior) (struct target_ops *, -- 2.7.4