aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-07-29 21:42:31 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-07-29 21:42:31 +0000
commit63757ecd89305170447e581bde5b965061da983b (patch)
tree879c08a20c1fd31bfc4558940b10a9ee69f2e9f7 /gdb
parent54a11a1df0a43316a688414197b1d5b67a281c0e (diff)
downloadgdb-63757ecd89305170447e581bde5b965061da983b.zip
gdb-63757ecd89305170447e581bde5b965061da983b.tar.gz
gdb-63757ecd89305170447e581bde5b965061da983b.tar.bz2
* hppa-tdep.c: Make "maintenance print unwind" command from old
"unwind" command.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog3
-rw-r--r--gdb/hppa-tdep.c12
2 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3dfe5ff..a6d2267 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,8 @@
Thu Jul 29 12:09:46 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
+ * hppa-tdep.c: Make "maintenance print unwind" command from old
+ "unwind" command.
+
* remote-udi.c: Remove udi_timer, call to siginterrupt, and associated
obsolete junk which apparently had been copied from the
pre-serial.h remote.c, but which is no longer used.
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c
index 4def91a..e8b3893 100644
--- a/gdb/hppa-tdep.c
+++ b/gdb/hppa-tdep.c
@@ -1004,6 +1004,8 @@ skip_prologue(pc)
return pc;
}
+#ifdef MAINTENANCE_CMDS
+
static void
unwind_command (exp, from_tty)
char *exp;
@@ -1034,3 +1036,13 @@ unwind_command (exp, from_tty)
printf ("%08x\n%08X\n%08X\n%08X\n", xxx.foo[0], xxx.foo[1], xxx.foo[2],
xxx.foo[3]);
}
+
+void
+_initialize_hppa_tdep ()
+{
+ add_cmd ("unwind", class_maintenance, unwind_command,
+ "Print unwind table entry at given address.",
+ &maintenanceprintlist);
+}
+
+#endif /* MAINTENANCE_CMDS */