diff options
author | Bob Rossi <bob@brasko.net> | 2005-07-06 14:54:37 +0000 |
---|---|---|
committer | Bob Rossi <bob@brasko.net> | 2005-07-06 14:54:37 +0000 |
commit | 3cb3b8dfd1975f480bec3ebd8023f1cc8351606d (patch) | |
tree | 4343381252723a8129f84a7e1b8ff55db8a77469 /gdb/inflow.c | |
parent | 5cf2e3f01e6546edc8951532cfeaebef5587fba4 (diff) | |
download | gdb-3cb3b8dfd1975f480bec3ebd8023f1cc8351606d.zip gdb-3cb3b8dfd1975f480bec3ebd8023f1cc8351606d.tar.gz gdb-3cb3b8dfd1975f480bec3ebd8023f1cc8351606d.tar.bz2 |
Index: gdb/ChangeLog
+2005-07-06 Bob Rossi <bob@brasko.net>
+
+ * fork-child.c (fork-inferior): Use accessor function for
+ inferior_io_terminal.
+ * infcmd.c (inferior_io_terminal): Make static.
+ (set_inferior_io_terminal): New function.
+ (get_inferior_io_terminal): Ditto.
+ (tty_command): Use accessor function.
+ (_initialize_infcmd): Add inferior_tty setshow variable.
+ (_initialize_infcmd): Remove tty command.
+ (_initialize_infcmd): Add a tty command that is an alias.
+ * inferior.h (set_inferior_io_terminal): New prototype.
+ (get_inferior_io_terminal): Ditto.
+ (new_tty_prefork): Add const qualifier to parameter.
+ * inflow.c (inferior_thisrun_terminal): Add const qualifier.
+ (new_tty_prefork): Add const qualifier to parameter.
+ * nto-procfs (procfs_create_inferior): Use accessor function.
+ (procfs_create_inferior): Add const qualifier to locals.
+ * win32-nat.c (child_create_inferior): Ditto.
+ * mi/mi-cmd-env.c (mi_cmd_inferior_tty_set): New function.
+ (mi_cmd_inferior_tty_set): Ditto.
+ * mi/mi-cmds.c (mi_cmds): Add inferior-tty-set and inferior-tty-show
+ * mi/mi-cmds.h (mi_cmd_inferior_tty_set): Add prototype.
+ (mi_cmd_inferior_tty_show): Ditto.
Index: gdb/doc/ChangeLog
+2005-07-06 Bob Rossi <bob@brasko.net>
+
+ * gdb.texinfo (GDB/MI Miscellaneous Commands): Add -inferior-tty-set
+ and -inferior-tty-show.
+ (Input/Output): Document "set/show inferior-tty" and tty alias.
Index: gdb/testsuite/ChangeLog
+2005-07-06 Bob Rossi <bob@brasko.net>
+
+ * gdb.mi/mi-basics.exp (test_setshow_inferior_tty): Test MI tty
+ command.
+ (Copyright): Update copyright.
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r-- | gdb/inflow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index 2961a39..b88e303 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -94,7 +94,7 @@ static void (*sigquit_ours) (); /* The name of the tty (from the `tty' command) that we gave to the inferior when it was last started. */ -static char *inferior_thisrun_terminal; +static const char *inferior_thisrun_terminal; /* Nonzero if our terminal settings are in effect. Zero if the inferior's settings are in effect. Ignored if !gdb_has_a_terminal @@ -509,7 +509,7 @@ child_terminal_info (char *args, int from_tty) the terminal specified in the NEW_TTY_PREFORK call. */ void -new_tty_prefork (char *ttyname) +new_tty_prefork (const char *ttyname) { /* Save the name for later, for determining whether we and the child are sharing a tty. */ |