From 27524c05b80a6e6e54a6600ec48c1b089a4a2d2c Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 30 Oct 2007 21:45:17 +0000 Subject: 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/bsd-uthread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/bsd-uthread.c') diff --git a/gdb/bsd-uthread.c b/gdb/bsd-uthread.c index 488ab61..3c8714a 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; -- cgit v1.1