diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-02-22 18:47:41 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-02-22 18:47:41 +0000 |
commit | 50c9bd316dea4c2a2103d5856a9a942c999e16ae (patch) | |
tree | 79e6371c6bad015c5ff46697f9baadb44c581065 /gdb/ppc-linux-nat.c | |
parent | 9a1e79ca636303362b6e05ad5bbbd8580c4bd982 (diff) | |
download | gdb-50c9bd316dea4c2a2103d5856a9a942c999e16ae.zip gdb-50c9bd316dea4c2a2103d5856a9a942c999e16ae.tar.gz gdb-50c9bd316dea4c2a2103d5856a9a942c999e16ae.tar.bz2 |
Cleanups and signal handler backtrace fix for GNU/Linux PPC port.
Diffstat (limited to 'gdb/ppc-linux-nat.c')
-rw-r--r-- | gdb/ppc-linux-nat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/ppc-linux-nat.c b/gdb/ppc-linux-nat.c index 1522f96..2f242a8 100644 --- a/gdb/ppc-linux-nat.c +++ b/gdb/ppc-linux-nat.c @@ -54,6 +54,7 @@ ppc_register_u_addr (int ustart, int regnum) return (ustart + 4 * regmap[regnum]); } +void supply_gregset (gregset_t * gregsetp) { int regi; @@ -66,6 +67,7 @@ supply_gregset (gregset_t * gregsetp) supply_register (regi, (char *) (regp + regmap[regi])); } +void supply_fpregset (fpregset_t * fpregsetp) { int regi; |