aboutsummaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-03-27 12:53:55 -0400
committerSimon Marchi <simon.marchi@efficios.com>2023-04-04 21:05:31 -0400
commit9213a6d79a64446de3c176773f123d1f8b9311b4 (patch)
tree6d7374a516e68130713eccfaf3ba60611809c104 /gdb/infcmd.c
parent3c8af02fa0b140edcde2a65d016f565aad1a699b (diff)
downloadgdb-9213a6d79a64446de3c176773f123d1f8b9311b4.zip
gdb-9213a6d79a64446de3c176773f123d1f8b9311b4.tar.gz
gdb-9213a6d79a64446de3c176773f123d1f8b9311b4.tar.bz2
gdb: make find_thread_ptid a process_stratum_target method
Make find_thread_ptid (the overload that takes a process_stratum_target) a method of process_stratum_target. Change-Id: Ib190a925a83c6b93e9c585dc7c6ab65efbdd8629 Reviewed-By: Tom Tromey <tom@tromey.com>
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 a686115..1038994 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -710,7 +710,7 @@ continue_command (const char *args, int from_tty)
ptid_t last_ptid;
get_last_target_status (&last_target, &last_ptid, nullptr);
- tp = find_thread_ptid (last_target, last_ptid);
+ tp = last_target->find_thread (last_ptid);
}
if (tp != nullptr)
bs = tp->control.stop_bpstat;