From 713f0374c042c67cfed6110a7ce2dd852ad49500 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Tue, 6 Feb 2001 19:59:06 +0000 Subject: 2001-02-04 Philip Blundell * config/arm/linux.mh (NATDEPFILES): Add proc-service.o, thread-db.o, lin-lwp.o; remove lin-thread.o, linux-thread.o. * config/arm/nm-linux.h (PREPARE_TO_PROCEED, ATTACH_LWP, GET_THREAD_SIGNALS): Define. * arm-linux-nat.c (fill_gregset): Correct type of argument. (supply_gregset): Likewise. (fill_fpregset): Likewise. (supply_fpregset): Likewise. --- gdb/arm-linux-nat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gdb/arm-linux-nat.c') diff --git a/gdb/arm-linux-nat.c b/gdb/arm-linux-nat.c index 7c8e04b..f0815bc 100644 --- a/gdb/arm-linux-nat.c +++ b/gdb/arm-linux-nat.c @@ -575,7 +575,7 @@ store_inferior_registers (int regno) If regno is -1, do this for all registers. */ void -fill_gregset (gregset_t *gregsetp, int regno) +fill_gregset (gdb_gregset_t *gregsetp, int regno) { if (-1 == regno) { @@ -607,7 +607,7 @@ fill_gregset (gregset_t *gregsetp, int regno) in *gregsetp. */ void -supply_gregset (gregset_t *gregsetp) +supply_gregset (gdb_gregset_t *gregsetp) { int regno, reg_pc; @@ -628,7 +628,7 @@ supply_gregset (gregset_t *gregsetp) If regno is -1, do this for all registers. */ void -fill_fpregset (fpregset_t *fpregsetp, int regno) +fill_fpregset (gdb_fpregset_t *fpregsetp, int regno) { FPA11 *fp = (FPA11 *) fpregsetp; @@ -654,7 +654,7 @@ fill_fpregset (fpregset_t *fpregsetp, int regno) in *fpregsetp. */ void -supply_fpregset (fpregset_t *fpregsetp) +supply_fpregset (gdb_fpregset_t *fpregsetp) { int regno; FPA11 *fp = (FPA11 *) fpregsetp; -- cgit v1.1