X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fppc-linux-nat.c;h=66e6e831a77001783cbed6f31318723f4716297f;hb=4e052eda914ce3a3c48b31a0d13bce89c364495e;hp=7388254aa4c67bbad5309664adb0225e2b97e95e;hpb=fdb28ac40143fc026508662a4df94a2582e6bf99;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ppc-linux-nat.c b/gdb/ppc-linux-nat.c index 7388254aa4..66e6e831a7 100644 --- a/gdb/ppc-linux-nat.c +++ b/gdb/ppc-linux-nat.c @@ -1,5 +1,6 @@ /* PPC linux native support. - Copyright (C) 1988, 1989, 1991, 1992, 1994, 1996 Free Software Foundation, Inc. + Copyright 1988, 1989, 1991, 1992, 1994, 1996, 2001 Free Software + Foundation, Inc. This file is part of GDB. @@ -21,6 +22,7 @@ #include "frame.h" #include "inferior.h" #include "gdbcore.h" +#include "regcache.h" #include #include @@ -58,7 +60,7 @@ ppc_register_u_addr (int ustart, int regnum) } void -supply_gregset (gregset_t * gregsetp) +supply_gregset (gdb_gregset_t *gregsetp) { int regi; register greg_t *regp = (greg_t *) gregsetp; @@ -71,7 +73,7 @@ supply_gregset (gregset_t * gregsetp) } void -fill_gregset (gregset_t *gregsetp, int regno) +fill_gregset (gdb_gregset_t *gregsetp, int regno) { int regi; greg_t *regp = (greg_t *) gregsetp; @@ -93,7 +95,7 @@ fill_gregset (gregset_t *gregsetp, int regno) } void -supply_fpregset (fpregset_t * fpregsetp) +supply_fpregset (gdb_fpregset_t * fpregsetp) { int regi; for (regi = 0; regi < 32; regi++) @@ -108,7 +110,7 @@ supply_fpregset (fpregset_t * fpregsetp) them all. */ void -fill_fpregset (fpregset_t *fpregsetp, int regno) +fill_fpregset (gdb_fpregset_t *fpregsetp, int regno) { int regi; char *to;