X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fppc-fbsd-nat.c;h=648f628cf7eaa2737204be04266b38368f091d8e;hb=eb390f499b820b74e0ab07162b0b8bd12da6f35a;hp=44661e9a2485c35d090fbd89440694146c2ba682;hpb=73e1c03f93f0294b464dc2b67de1f9aaae84838d;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ppc-fbsd-nat.c b/gdb/ppc-fbsd-nat.c index 44661e9a24..648f628cf7 100644 --- a/gdb/ppc-fbsd-nat.c +++ b/gdb/ppc-fbsd-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for PowerPC's running FreeBSD, for GDB. - Copyright (C) 2013-2018 Free Software Foundation, Inc. + Copyright (C) 2013-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -127,7 +127,7 @@ void ppc_fbsd_nat_target::fetch_registers (struct regcache *regcache, int regno) { gdb_gregset_t regs; - pid_t pid = ptid_get_lwp (regcache->ptid ()); + pid_t pid = regcache->ptid ().lwp (); if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1) perror_with_name (_("Couldn't get registers")); @@ -153,7 +153,7 @@ void ppc_fbsd_nat_target::store_registers (struct regcache *regcache, int regno) { gdb_gregset_t regs; - pid_t pid = ptid_get_lwp (regcache->ptid ()); + pid_t pid = regcache->ptid ().lwp (); if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1) perror_with_name (_("Couldn't get registers"));