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/config/arm/linux.mh | 5 +++-- gdb/config/arm/nm-linux.h | 16 ++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) (limited to 'gdb/config') diff --git a/gdb/config/arm/linux.mh b/gdb/config/arm/linux.mh index c373f72..c9e9b64 100644 --- a/gdb/config/arm/linux.mh +++ b/gdb/config/arm/linux.mh @@ -4,8 +4,9 @@ XM_FILE= xm-linux.h XDEPFILES= NAT_FILE= nm-linux.h -NATDEPFILES= infptrace.o inftarg.o fork-child.o corelow.o \ - core-regset.o arm-linux-nat.o linux-thread.o lin-thread.o +NATDEPFILES= infptrace.o inftarg.o fork-child.o corelow.o \ + core-regset.o arm-linux-nat.o \ + proc-service.o thread-db.o lin-lwp.o LOADLIBES= -ldl -rdynamic diff --git a/gdb/config/arm/nm-linux.h b/gdb/config/arm/nm-linux.h index fd459fc..c83e0f8 100644 --- a/gdb/config/arm/nm-linux.h +++ b/gdb/config/arm/nm-linux.h @@ -30,4 +30,20 @@ extern int kernel_u_size (void); /* Override copies of {fetch,store}_inferior_registers in infptrace.c. */ #define FETCH_INFERIOR_REGISTERS +/* FIXME: kettenis/2000-09-03: This should be moved to ../nm-linux.h + once we have converted all Linux targets to use the new threads + stuff (without the #undef of course). */ + +extern int lin_lwp_prepare_to_proceed (void); +#undef PREPARE_TO_PROCEED +#define PREPARE_TO_PROCEED(select_it) lin_lwp_prepare_to_proceed () + +extern void lin_lwp_attach_lwp (int pid, int verbose); +#define ATTACH_LWP(pid, verbose) lin_lwp_attach_lwp ((pid), (verbose)) + +#include + +extern void lin_thread_get_thread_signals (sigset_t *mask); +#define GET_THREAD_SIGNALS(mask) lin_thread_get_thread_signals (mask) + #endif /* NM_ARMLINUX_H */ -- cgit v1.1