diff options
author | Tom Tromey <tom@tromey.com> | 2018-06-11 12:14:34 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-03 11:36:44 -0600 |
commit | cc6bcb548d67a5a0a7223d81bd43c299312320c8 (patch) | |
tree | 205be2c55d1a8f204d8e7d0b3d14a69b2253f0b1 /gdb/nto-procfs.c | |
parent | e38504b39279fa86cbb2c4a45ab8ec34e3aef90b (diff) | |
download | binutils-gdb-cc6bcb548d67a5a0a7223d81bd43c299312320c8.tar.gz |
Remove ptid_get_tid
This removes ptid_get_tid in favor of calling the ptid_t::tid method.
gdb/ChangeLog
2018-07-03 Tom Tromey <tom@tromey.com>
* common/ptid.c (ptid_get_tid): Remove.
* common/ptid.h (ptid_get_tid): Don't declare.
* ada-tasks.c: Update.
* aix-thread.c: Update.
* bsd-uthread.c: Update.
* darwin-nat.c: Update.
* fbsd-nat.c: Update.
* i386-darwin-nat.c: Update.
* infrun.c: Update.
* linux-tdep.c: Update.
* nto-procfs.c: Update.
* ppc-ravenscar-thread.c: Update.
* python/py-infthread.c: Update.
* ravenscar-thread.c: Update.
* sol-thread.c: Update.
* sparc-ravenscar-thread.c: Update.
* windows-nat.c: Update.
gdb/gdbserver/ChangeLog
2018-07-03 Tom Tromey <tom@tromey.com>
* target.c: Update.
Diffstat (limited to 'gdb/nto-procfs.c')
-rw-r--r-- | gdb/nto-procfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c index 53797c8981a..d140068c05d 100644 --- a/gdb/nto-procfs.c +++ b/gdb/nto-procfs.c @@ -296,7 +296,7 @@ procfs_set_thread (ptid_t ptid) { pid_t tid; - tid = ptid_get_tid (ptid); + tid = ptid.tid (); devctl (ctl_fd, DCMD_PROC_CURTHREAD, &tid, sizeof (tid), 0); } @@ -310,7 +310,7 @@ nto_procfs_target::thread_alive (ptid_t ptid) procfs_status status; int err; - tid = ptid_get_tid (ptid); + tid = ptid.tid (); pid = ptid.pid (); if (kill (pid, 0) == -1) @@ -1469,7 +1469,7 @@ nto_procfs_target::pid_to_str (ptid_t ptid) struct tidinfo *tip; pid = ptid.pid (); - tid = ptid_get_tid (ptid); + tid = ptid.tid (); n = snprintf (buf, 1023, "process %d", pid); |