X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fsparc-linux-nat.c;h=03e2c6ebba80c6e5d5ae43b7afb6024290588d6f;hb=6a053cb1ff643cec3349d7f2f47ae5573f82d613;hp=bdaf8dcc259c5fe3b2ed5257ba43c1fc77016bd0;hpb=61baf725eca99af2569262d10aca03dcde2698f6;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/sparc-linux-nat.c b/gdb/sparc-linux-nat.c index bdaf8dcc25..03e2c6ebba 100644 --- a/gdb/sparc-linux-nat.c +++ b/gdb/sparc-linux-nat.c @@ -1,5 +1,5 @@ /* Native-dependent code for GNU/Linux SPARC. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -28,6 +28,19 @@ #include "target.h" #include "linux-nat.h" +class sparc_linux_nat_target final : public linux_nat_target +{ +public: + /* Add our register access methods. */ + void fetch_registers (struct regcache *regcache, int regnum) override + { sparc_fetch_inferior_registers (regcache, regnum); } + + void store_registers (struct regcache *regcache, int regnum) override + { sparc_store_inferior_registers (regcache, regnum); } +}; + +static sparc_linux_nat_target the_sparc_linux_nat_target; + void supply_gregset (struct regcache *regcache, const prgregset_t *gregs) { @@ -53,22 +66,12 @@ fill_fpregset (const struct regcache *regcache, sparc32_collect_fpregset (sparc_fpregmap, regcache, regnum, fpregs); } -void _initialize_sparc_linux_nat (void); - void _initialize_sparc_linux_nat (void) { - struct target_ops *t; - - /* Fill in the generic GNU/Linux methods. */ - t = linux_target (); - sparc_fpregmap = &sparc32_bsd_fpregmap; - /* Add our register access methods. */ - t->to_fetch_registers = sparc_fetch_inferior_registers; - t->to_store_registers = sparc_store_inferior_registers; - /* Register the target. */ - linux_nat_add_target (t); + linux_target = &the_sparc_linux_nat_target; + add_inf_child_target (&the_sparc_linux_nat_target); }