diff options
author | Tom Tromey <tom@tromey.com> | 2018-06-11 12:20:11 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-03 11:36:45 -0600 |
commit | 15a9e13e521ec3acb4bd3616f349b9d19780cd48 (patch) | |
tree | a5116c4d4fd14d48d1a8405a6338b592065187ea /gdb/nat | |
parent | 0e998d966be13e548721109a4e44b2887fc5cb24 (diff) | |
download | gdb-15a9e13e521ec3acb4bd3616f349b9d19780cd48.zip gdb-15a9e13e521ec3acb4bd3616f349b9d19780cd48.tar.gz gdb-15a9e13e521ec3acb4bd3616f349b9d19780cd48.tar.bz2 |
Remove ptid_lwp_p
This removes ptid_lwp_p in favor of the ptid_t::lwp_p method.
gdb/ChangeLog
2018-07-03 Tom Tromey <tom@tromey.com>
* common/ptid.c (ptid_lwp_p): Remove.
* common/ptid.h (ptid_lwp_p): Don't declare.
* fbsd-nat.c: Update.
* linux-nat.c: Update.
* nat/linux-procfs.c: Update.
* nat/x86-linux-dregs.c: Update.
* sol-thread.c: Update.
Diffstat (limited to 'gdb/nat')
-rw-r--r-- | gdb/nat/linux-procfs.c | 2 | ||||
-rw-r--r-- | gdb/nat/x86-linux-dregs.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gdb/nat/linux-procfs.c b/gdb/nat/linux-procfs.c index 20708fa..1c236c5 100644 --- a/gdb/nat/linux-procfs.c +++ b/gdb/nat/linux-procfs.c @@ -240,7 +240,7 @@ linux_proc_tid_get_name (ptid_t ptid) char comm_path[100]; const char *comm_val; pid_t pid = ptid.pid (); - pid_t tid = ptid_lwp_p (ptid) ? ptid.lwp () : ptid.pid (); + pid_t tid = ptid.lwp_p () ? ptid.lwp () : ptid.pid (); xsnprintf (comm_path, sizeof (comm_path), "/proc/%ld/task/%ld/comm", (long) pid, (long) tid); diff --git a/gdb/nat/x86-linux-dregs.c b/gdb/nat/x86-linux-dregs.c index 8aa8717..5437fb4 100644 --- a/gdb/nat/x86-linux-dregs.c +++ b/gdb/nat/x86-linux-dregs.c @@ -43,7 +43,7 @@ x86_linux_dr_get (ptid_t ptid, int regnum) int tid; unsigned long value; - gdb_assert (ptid_lwp_p (ptid)); + gdb_assert (ptid.lwp_p ()); tid = ptid.lwp (); errno = 0; @@ -61,7 +61,7 @@ x86_linux_dr_set (ptid_t ptid, int regnum, unsigned long value) { int tid; - gdb_assert (ptid_lwp_p (ptid)); + gdb_assert (ptid.lwp_p ()); tid = ptid.lwp (); errno = 0; |