diff options
author | Tom Tromey <tom@tromey.com> | 2018-06-11 12:10:09 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-03 11:36:43 -0600 |
commit | e38504b39279fa86cbb2c4a45ab8ec34e3aef90b (patch) | |
tree | 16f941e0132d751ed93e793e8ac078418f656938 /gdb/fbsd-nat.c | |
parent | e99b03dcf42606425eab8bd12eadb8aa4007f35a (diff) | |
download | gdb-e38504b39279fa86cbb2c4a45ab8ec34e3aef90b.zip gdb-e38504b39279fa86cbb2c4a45ab8ec34e3aef90b.tar.gz gdb-e38504b39279fa86cbb2c4a45ab8ec34e3aef90b.tar.bz2 |
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.
Diffstat (limited to 'gdb/fbsd-nat.c')
-rw-r--r-- | gdb/fbsd-nat.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/fbsd-nat.c b/gdb/fbsd-nat.c index f88d6a0..8ce55c1 100644 --- a/gdb/fbsd-nat.c +++ b/gdb/fbsd-nat.c @@ -814,7 +814,7 @@ fbsd_nat_target::thread_alive (ptid_t ptid) { struct ptrace_lwpinfo pl; - if (ptrace (PT_LWPINFO, ptid_get_lwp (ptid), (caddr_t) &pl, sizeof pl) + if (ptrace (PT_LWPINFO, ptid.lwp (), (caddr_t) &pl, sizeof pl) == -1) return false; #ifdef PL_FLAG_EXITED @@ -834,7 +834,7 @@ fbsd_nat_target::pid_to_str (ptid_t ptid) { lwpid_t lwp; - lwp = ptid_get_lwp (ptid); + lwp = ptid.lwp (); if (lwp != 0) { static char buf[64]; @@ -857,7 +857,7 @@ fbsd_nat_target::thread_name (struct thread_info *thr) struct ptrace_lwpinfo pl; struct kinfo_proc kp; int pid = thr->ptid.pid (); - long lwp = ptid_get_lwp (thr->ptid); + long lwp = thr->ptid.lwp (); static char buf[sizeof pl.pl_tdname + 1]; /* Note that ptrace_lwpinfo returns the process command in pl_tdname @@ -1100,7 +1100,7 @@ fbsd_nat_target::resume (ptid_t ptid, int step, enum gdb_signal signo) if (debug_fbsd_lwp) fprintf_unfiltered (gdb_stdlog, "FLWP: fbsd_resume for ptid (%d, %ld, %ld)\n", - ptid.pid (), ptid_get_lwp (ptid), + ptid.pid (), ptid.lwp (), ptid_get_tid (ptid)); if (ptid_lwp_p (ptid)) { @@ -1113,12 +1113,12 @@ fbsd_nat_target::resume (ptid_t ptid, int step, enum gdb_signal signo) if (tp->ptid.pid () != ptid.pid ()) continue; - if (ptid_get_lwp (tp->ptid) == ptid_get_lwp (ptid)) + if (tp->ptid.lwp () == ptid.lwp ()) request = PT_RESUME; else request = PT_SUSPEND; - if (ptrace (request, ptid_get_lwp (tp->ptid), NULL, 0) == -1) + if (ptrace (request, tp->ptid.lwp (), NULL, 0) == -1) perror_with_name (("ptrace")); } } @@ -1133,7 +1133,7 @@ fbsd_nat_target::resume (ptid_t ptid, int step, enum gdb_signal signo) if (!ptid_match (tp->ptid, ptid)) continue; - if (ptrace (PT_RESUME, ptid_get_lwp (tp->ptid), NULL, 0) == -1) + if (ptrace (PT_RESUME, tp->ptid.lwp (), NULL, 0) == -1) perror_with_name (("ptrace")); } ptid = inferior_ptid; |