* hppa-tdep.c: Make "maintenance print unwind" command from old

"unwind" command.
This commit is contained in:
Jim Kingdon 1993-07-29 21:42:31 +00:00
parent 54a11a1df0
commit 63757ecd89
2 changed files with 15 additions and 0 deletions

View File

@ -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.

View File

@ -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 */