aboutsummaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2018-06-11 14:35:00 -0600
committerTom Tromey <tom@tromey.com>2018-07-03 11:36:45 -0600
commit26a57c9256d7ec2b4da2f1d85a9fba830948dbd9 (patch)
tree3d6e95a05146b2eea1a317bee32302f3779c86af /gdb/infcmd.c
parentd2a107e3f9e84808ae0860693f1c488b1e3f5559 (diff)
downloadfsf-binutils-gdb-26a57c9256d7ec2b4da2f1d85a9fba830948dbd9.zip
fsf-binutils-gdb-26a57c9256d7ec2b4da2f1d85a9fba830948dbd9.tar.gz
fsf-binutils-gdb-26a57c9256d7ec2b4da2f1d85a9fba830948dbd9.tar.bz2
Remove ptid_match
This removes ptid_match in favor of the ptid_t::matches method. gdb/ChangeLog 2018-07-03 Tom Tromey <tom@tromey.com> * common/ptid.c (ptid_match): Remove. * common/ptid.h (ptid_match): Don't declare. * fbsd-nat.c: Update. * infcmd.c: Update. * infrun.c: Update. * linux-nat.c: Update. * record-btrace.c: Update. * regcache.c: Update. * remote.c: Update. gdb/gdbserver/ChangeLog 2018-07-03 Tom Tromey <tom@tromey.com> * server.c: Update.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r--gdb/infcmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index 41322c6..c9c70fb 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -1351,7 +1351,7 @@ signal_command (const char *signum_exp, int from_tty)
{
if (ptid_equal (tp->ptid, inferior_ptid))
continue;
- if (!ptid_match (tp->ptid, resume_ptid))
+ if (!tp->ptid.matches (resume_ptid))
continue;
if (tp->suspend.stop_signal != GDB_SIGNAL_0