From: Simon Marchi Date: Fri, 17 Mar 2017 17:55:54 +0000 (-0400) Subject: hppa-nbsd-nat: Use ptid from regcache instead of inferior_ptid X-Git-Tag: gdb-8.0-release~353 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10799020a9336b6a88c1ace53c601960b840d580;p=external%2Fbinutils.git hppa-nbsd-nat: Use ptid from regcache instead of inferior_ptid gdb/ChangeLog: * hppa-nbsd-nat.c (hppanbsd_fetch_registers, hppanbsd_store_registers): Use ptid from regcache. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cae93e8..3c07a7f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2017-03-17 Simon Marchi + * hppa-nbsd-nat.c (hppanbsd_fetch_registers, + hppanbsd_store_registers): Use ptid from regcache. + +2017-03-17 Simon Marchi + * hppa-linux-nat.c (fetch_register, store_register): Use ptid from regcache. Use get_ptrace_pid. diff --git a/gdb/hppa-nbsd-nat.c b/gdb/hppa-nbsd-nat.c index 200bc68..54c776c 100644 --- a/gdb/hppa-nbsd-nat.c +++ b/gdb/hppa-nbsd-nat.c @@ -163,12 +163,13 @@ hppanbsd_fetch_registers (struct target_ops *ops, struct regcache *regcache, int regnum) { + pid_t pid = ptid_get_pid (regcache_get_ptid (regcache)); + if (regnum == -1 || hppanbsd_gregset_supplies_p (regnum)) { struct reg regs; - if (ptrace (PT_GETREGS, ptid_get_pid (inferior_ptid), - (PTRACE_TYPE_ARG3) ®s, 0) == -1) + if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1) perror_with_name (_("Couldn't get registers")); hppanbsd_supply_gregset (regcache, ®s); @@ -178,8 +179,7 @@ hppanbsd_fetch_registers (struct target_ops *ops, { struct fpreg fpregs; - if (ptrace (PT_GETFPREGS, ptid_get_pid (inferior_ptid), - (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) + if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) perror_with_name (_("Couldn't get floating point status")); hppanbsd_supply_fpregset (regcache, &fpregs); @@ -193,18 +193,18 @@ static void hppanbsd_store_registers (struct target_ops *ops, struct regcache *regcache, int regnum) { + pid_t pid = ptid_get_pid (regcache_get_ptid (regcache)); + if (regnum == -1 || hppanbsd_gregset_supplies_p (regnum)) { struct reg regs; - if (ptrace (PT_GETREGS, ptid_get_pid (inferior_ptid), - (PTRACE_TYPE_ARG3) ®s, 0) == -1) + if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1) perror_with_name (_("Couldn't get registers")); hppanbsd_collect_gregset (regcache, ®s, regnum); - if (ptrace (PT_SETREGS, ptid_get_pid (inferior_ptid), - (PTRACE_TYPE_ARG3) ®s, 0) == -1) + if (ptrace (PT_SETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1) perror_with_name (_("Couldn't write registers")); } @@ -212,14 +212,12 @@ hppanbsd_store_registers (struct target_ops *ops, { struct fpreg fpregs; - if (ptrace (PT_GETFPREGS, ptid_get_pid (inferior_ptid), - (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) + if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) perror_with_name (_("Couldn't get floating point status")); hppanbsd_collect_fpregset (regcache, &fpregs, regnum); - if (ptrace (PT_SETFPREGS, ptid_get_pid (inferior_ptid), - (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) + if (ptrace (PT_SETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) perror_with_name (_("Couldn't write floating point status")); } }