Remove ptid_get_lwp
This removes ptid_get_lwp in favor of calling the ptid_t::lwp method. gdb/ChangeLog 2018-07-03 Tom Tromey <tom@tromey.com> * common/ptid.c (ptid_get_lwp): Remove. * common/ptid.h (ptid_get_lwp): Don't declare. * aarch64-linux-nat.c: Update. * ada-tasks.c: Update. * aix-thread.c: Update. * amd64-linux-nat.c: Update. * arm-linux-nat.c: Update. * corelow.c: Update. * fbsd-nat.c: Update. * fbsd-tdep.c: Update. * gnu-nat.c: Update. * i386-cygwin-tdep.c: Update. * i386-gnu-nat.c: Update. * i386-linux-nat.c: Update. * ia64-linux-nat.c: Update. * inf-ptrace.c: Update. * infrun.c: Update. * linux-fork.c: Update. * linux-nat.c: Update. * linux-tdep.c: Update. * linux-thread-db.c: Update. * mips-linux-nat.c: Update. * nat/aarch64-linux-hw-point.c: Update. * nat/aarch64-linux.c: Update. * nat/linux-btrace.c: Update. * nat/linux-osdata.c: Update. * nat/linux-procfs.c: Update. * nat/x86-linux-dregs.c: Update. * obsd-nat.c: Update. * ppc-fbsd-nat.c: Update. * ppc-linux-nat.c: Update. * procfs.c: Update. * python/py-infthread.c: Update. * ravenscar-thread.c: Update. * remote.c: Update. * s390-linux-nat.c: Update. * sol-thread.c: Update. * sol2-tdep.c: Update. * spu-linux-nat.c: Update. * x86-linux-nat.c: Update. * xtensa-linux-nat.c: Update. gdb/gdbserver/ChangeLog 2018-07-03 Tom Tromey <tom@tromey.com> * linux-low.c: Update. * linux-mips-low.c: Update. * lynx-low.c: Update. * nto-low.c: Update. * remote-utils.c: Update. * server.c: Update. * spu-low.c: Update. * target.c: Update. * thread-db.c: Update.
This commit is contained in:
parent
e99b03dcf4
commit
e38504b392
52 changed files with 263 additions and 219 deletions
|
@ -460,7 +460,7 @@ mips_linux_nat_target::read_description ()
|
|||
{
|
||||
int tid;
|
||||
|
||||
tid = ptid_get_lwp (inferior_ptid);
|
||||
tid = inferior_ptid.lwp ();
|
||||
if (tid == 0)
|
||||
tid = inferior_ptid.pid ();
|
||||
|
||||
|
@ -543,7 +543,7 @@ mips_linux_nat_target::can_use_hw_breakpoint (enum bptype type,
|
|||
int i;
|
||||
uint32_t wanted_mask, irw_mask;
|
||||
|
||||
if (!mips_linux_read_watch_registers (ptid_get_lwp (inferior_ptid),
|
||||
if (!mips_linux_read_watch_registers (inferior_ptid.lwp (),
|
||||
&watch_readback,
|
||||
&watch_readback_valid, 0))
|
||||
return 0;
|
||||
|
@ -584,7 +584,7 @@ mips_linux_nat_target::stopped_by_watchpoint ()
|
|||
int n;
|
||||
int num_valid;
|
||||
|
||||
if (!mips_linux_read_watch_registers (ptid_get_lwp (inferior_ptid),
|
||||
if (!mips_linux_read_watch_registers (inferior_ptid.lwp (),
|
||||
&watch_readback,
|
||||
&watch_readback_valid, 1))
|
||||
return false;
|
||||
|
@ -619,7 +619,7 @@ mips_linux_nat_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
|
|||
struct pt_watch_regs dummy_regs;
|
||||
int i;
|
||||
|
||||
if (!mips_linux_read_watch_registers (ptid_get_lwp (inferior_ptid),
|
||||
if (!mips_linux_read_watch_registers (inferior_ptid.lwp (),
|
||||
&watch_readback,
|
||||
&watch_readback_valid, 0))
|
||||
return 0;
|
||||
|
@ -641,7 +641,7 @@ write_watchpoint_regs (void)
|
|||
|
||||
ALL_LWPS (lp)
|
||||
{
|
||||
tid = ptid_get_lwp (lp->ptid);
|
||||
tid = lp->ptid.lwp ();
|
||||
if (ptrace (PTRACE_SET_WATCH_REGS, tid, &watch_mirror, NULL) == -1)
|
||||
perror_with_name (_("Couldn't write debug register"));
|
||||
}
|
||||
|
@ -680,7 +680,7 @@ mips_linux_nat_target::insert_watchpoint (CORE_ADDR addr, int len,
|
|||
int i;
|
||||
int retval;
|
||||
|
||||
if (!mips_linux_read_watch_registers (ptid_get_lwp (inferior_ptid),
|
||||
if (!mips_linux_read_watch_registers (inferior_ptid.lwp (),
|
||||
&watch_readback,
|
||||
&watch_readback_valid, 0))
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue