aboutsummaryrefslogtreecommitdiff
path: root/gdb/infrun.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-01-23 18:58:36 +0000
committerPedro Alves <palves@redhat.com>2019-01-23 19:14:44 +0000
commit979a0d1304ac7d73c9887f851e811d49752923fb (patch)
treeff14170dce37fd7b0cbfd27d14e7ee08b059dc3e /gdb/infrun.c
parentd238133d0292926b937aaa6f83bf921dd0bbb01c (diff)
downloadgdb-979a0d1304ac7d73c9887f851e811d49752923fb.zip
gdb-979a0d1304ac7d73c9887f851e811d49752923fb.tar.gz
gdb-979a0d1304ac7d73c9887f851e811d49752923fb.tar.bz2
Update an obsolete cleanup comment
This updates a comment in fetch_inferior_event. The comment refers to a cleanup that is now a scoped_restore_current_thread. gdb/ChangeLog: 2019-01-23 Tom Tromey <tom@tromey.com> * infrun.c (fetch_inferior_event): Update comment.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r--gdb/infrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c
index 6857467..cdfdf49 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -3744,7 +3744,7 @@ fetch_inferior_event (void *client_data)
ptid_t finish_ptid = !target_is_non_stop_p () ? minus_one_ptid : ecs->ptid;
scoped_finish_thread_state finish_state (finish_ptid);
- /* Get executed before make_cleanup_restore_current_thread above to apply
+ /* Get executed before scoped_restore_current_thread above to apply
still for the thread which has thrown the exception. */
auto defer_bpstat_clear
= make_scope_exit (bpstat_clear_actions);