From: Tom Tromey Date: Wed, 23 Jan 2019 18:58:36 +0000 (+0000) Subject: Update an obsolete cleanup comment X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=979a0d1304ac7d73c9887f851e811d49752923fb;p=deliverable%2Fbinutils-gdb.git 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 * infrun.c (fetch_inferior_event): Update comment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 33261fed14..d7bfd2dba0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2019-01-23 Tom Tromey + + * infrun.c (fetch_inferior_event): Update comment. + 2019-01-23 Tom Tromey Pedro Alves diff --git a/gdb/infrun.c b/gdb/infrun.c index 6857467983..cdfdf49070 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);