X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fsh-nbsd-nat.c;h=1717ff93f553d4351a36278ef5b81f70da41ca0b;hb=3276427003bd1fc676d1cb913c4d09a9f7b1c74f;hp=11c26beb63e159ec02e26760239f132a6dc8d142;hpb=ac7936dfd0c85e5de2dfec45ca0dbf72baeffa51;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/sh-nbsd-nat.c b/gdb/sh-nbsd-nat.c index 11c26beb63..1717ff93f5 100644 --- a/gdb/sh-nbsd-nat.c +++ b/gdb/sh-nbsd-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for NetBSD/sh. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2019 Free Software Foundation, Inc. Contributed by Wasabi Systems, Inc. @@ -30,6 +30,13 @@ #include "inf-ptrace.h" #include "regcache.h" +struct sh_nbsd_nat_target final : public inf_ptrace_target +{ + void fetch_registers (struct regcache *, int) override; + void store_registers (struct regcache *, int) override; +}; + +static sh_nbsd_nat_target the_sh_nbsd_nat_target; /* Determine if PT_GETREGS fetches this register. */ #define GETREGS_SUPPLIES(gdbarch, regno) \ @@ -41,11 +48,10 @@ /* Sizeof `struct reg' in . */ #define SHNBSD_SIZEOF_GREGS (21 * 4) -static void -shnbsd_fetch_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regno) +void +sh_nbsd_nat_target::fetch_registers (struct regcache *regcache, int regno) { - pid_t pid = ptid_get_pid (regcache_get_ptid (regcache)); + pid_t pid = regcache->ptid ().pid (); if (regno == -1 || GETREGS_SUPPLIES (regcache->arch (), regno)) { @@ -64,11 +70,10 @@ shnbsd_fetch_inferior_registers (struct target_ops *ops, } } -static void -shnbsd_store_inferior_registers (struct target_ops *ops, - struct regcache *regcache, int regno) +void +sh_nbsd_nat_target::store_registers (struct regcache *regcache, int regno) { - pid_t pid = ptid_get_pid (regcache_get_ptid (regcache)); + pid_t pid = regcache->ptid ().pid (); if (regno == -1 || GETREGS_SUPPLIES (regcache->arch (), regno)) { @@ -94,10 +99,5 @@ shnbsd_store_inferior_registers (struct target_ops *ops, void _initialize_shnbsd_nat (void) { - struct target_ops *t; - - t = inf_ptrace_target (); - t->to_fetch_registers = shnbsd_fetch_inferior_registers; - t->to_store_registers = shnbsd_store_inferior_registers; - add_target (t); + add_inf_child_target (&the_sh_nbsd_nat_target); }