* 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) <to_terminal_info>: Make argument const.
This commit is contained in:
parent
85e1311a3c
commit
503ebb2c1d
6 changed files with 17 additions and 9 deletions
|
@ -1,3 +1,13 @@
|
|||
2013-05-14 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* 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) <to_terminal_info>: Make argument
|
||||
const.
|
||||
|
||||
2013-05-13 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* gcore.c (create_gcore_bfd): Make 'filename' const.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 *,
|
||||
|
|
Loading…
Add table
Reference in a new issue