From 60c58056c2a12077876a978d9473e1e6ca3fbf3b 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 57d986f8d1..bc7c73ffc5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 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 get_frame_arch to get at the current architecture by frame_info. diff --git a/gdb/bsd-uthread.c b/gdb/bsd-uthread.c index 488ab61f09..3c8714ac5d 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.11.0