From 27524c05b80a6e6e54a6600ec48c1b089a4a2d2c Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 30 Oct 2007 21:45:17 +0000 Subject: [PATCH] 2007-10-30 Markus Deuling * bsd-uthread.c (bsd_uthread_fetch_registers) (bsd_uthread_store_registers): Use get_regcache_arch to get at the current architecture by regcache. --- gdb/ChangeLog | 6 ++++++ gdb/bsd-uthread.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 57d986f8d1d..bc7c73ffc58 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2007-10-30 Markus Deuling + + * bsd-uthread.c (bsd_uthread_fetch_registers) + (bsd_uthread_store_registers): Use get_regcache_arch to get at the + current architecture by regcache. + 2007-10-30 Markus Deuling * avr-tdep.c (avr_frame_unwind_cache, avr_frame_prev_register): Use diff --git a/gdb/bsd-uthread.c b/gdb/bsd-uthread.c index 488ab61f092..3c8714ac5d9 100644 --- a/gdb/bsd-uthread.c +++ b/gdb/bsd-uthread.c @@ -266,7 +266,7 @@ bsd_uthread_mourn_inferior (void) static void bsd_uthread_fetch_registers (struct regcache *regcache, int regnum) { - struct gdbarch *gdbarch = current_gdbarch; + struct gdbarch *gdbarch = get_regcache_arch (regcache); struct bsd_uthread_ops *ops = gdbarch_data (gdbarch, bsd_uthread_data); CORE_ADDR addr = ptid_get_tid (inferior_ptid); CORE_ADDR active_addr; @@ -292,7 +292,7 @@ bsd_uthread_fetch_registers (struct regcache *regcache, int regnum) static void bsd_uthread_store_registers (struct regcache *regcache, int regnum) { - struct gdbarch *gdbarch = current_gdbarch; + struct gdbarch *gdbarch = get_regcache_arch (regcache); struct bsd_uthread_ops *ops = gdbarch_data (gdbarch, bsd_uthread_data); CORE_ADDR addr = ptid_get_tid (inferior_ptid); CORE_ADDR active_addr; -- 2.30.2