aboutsummaryrefslogtreecommitdiff
path: root/gdb/pyr-xdep.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-05-25 16:22:41 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-05-25 16:22:41 +0000
commit6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9 (patch)
tree69bf808513b4c3989a99631722f4ab18a36c089f /gdb/pyr-xdep.c
parent30ffb593f81ebf09e891b09d87123dfd42b7fc98 (diff)
downloadgdb-6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9.zip
gdb-6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9.tar.gz
gdb-6fe90fc83fa5c600bb3ae1d3d17749b7f1377dc9.tar.bz2
* Many places: replace "the inferior" in messages with "the program"
or "the program being debugged". * inflow.c (try_writing_regs): Remove; it's been #if 0'd forever and I'm getting sick of maintaining it.
Diffstat (limited to 'gdb/pyr-xdep.c')
-rw-r--r--gdb/pyr-xdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/pyr-xdep.c b/gdb/pyr-xdep.c
index 84b0156..b850f5a 100644
--- a/gdb/pyr-xdep.c
+++ b/gdb/pyr-xdep.c
@@ -49,13 +49,13 @@ fetch_inferior_registers (regno)
reg_buf[regno] = ptrace (3, inferior_pid, (PTRACE_ARG3_TYPE) regno, 0);
#if defined(PYRAMID_CONTROL_FRAME_DEBUGGING)
- printf ("Fetching %s from inferior, got %0x\n",
+ printf ("Fetching register %s, got %0x\n",
reg_names[regno],
reg_buf[regno]);
#endif /* PYRAMID_CONTROL_FRAME_DEBUGGING */
if (reg_buf[regno] == -1 && errno == EIO) {
- printf("fetch_interior_registers: fetching %s from inferior\n",
+ printf("fetch_interior_registers: fetching register %s\n",
reg_names[regno]);
errno = 0;
}
@@ -231,7 +231,7 @@ core_file_command (filename, from_tty)
make_cleanup (free, filename);
if (have_inferior_p ())
- error ("To look at a core file, you must kill the inferior with \"kill\".");
+ error ("To look at a core file, you must kill the program with \"kill\".");
corechan = open (filename, O_RDONLY, 0);
if (corechan < 0)
perror_with_name (filename);