This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from ae73e2e243 Remove a warning from symtab.c new cf08fb29f8 Rename ESC -> ESC_PARENS new 54b65c9b51 Introduce scope_exit new 5b9b3e53a6 Introduce forward_scope_exit new 77f0e74cbe Use forward_scope_exit for scoped_finish_thread_state new e587ef421e Use SCOPE_EXIT in gdbarch-selftest.c new 5419bdae55 Replace delete_longjmp_breakpoint_cleanup with a forward_sco [...] new 89f8fb50fa Remove remaining cleanup from gdb/breakpoint.c new 4c41382ac1 Remove delete_just_stopped_threads_infrun_breakpoints_cleanup new 694c6bf542 Remove make_bpstat_clear_actions_cleanup new 2cc83d1e0e Remove cleanup_delete_std_terminate_breakpoint new 1db93f14fa Remove cleanup from linux-nat.c new 286526c1e5 Remove clear_symtab_users_cleanup new 9885e6bb5b Remove cleanup from stop_all_threads new d238133d02 Remove remaining cleanup from fetch_inferior_event new 979a0d1304 Update an obsolete cleanup comment new 296bd123f7 Update cleanup comment in ui-out.h new 311dc83a41 Use scope_exit in regcache.c
The 17 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/ChangeLog | 111 +++++++++++++++++++ gdb/breakpoint.c | 27 ++--- gdb/common/forward-scope-exit.h | 123 +++++++++++++++++++++ gdb/common/preprocessor.h | 2 +- gdb/common/scope-exit.h | 186 ++++++++++++++++++++++++++++++++ gdb/common/valid-expr.h | 18 ++-- gdb/gdbarch-selftests.c | 8 +- gdb/gdbthread.h | 28 +---- gdb/infcall.c | 13 +-- gdb/infcmd.c | 12 +-- gdb/inferior.h | 4 +- gdb/infrun.c | 230 ++++++++++++++++++---------------------- gdb/linux-nat.c | 18 +--- gdb/regcache.c | 34 +----- gdb/symfile.c | 24 ++--- gdb/top.c | 8 +- gdb/ui-out.h | 8 +- gdb/utils.c | 17 --- gdb/utils.h | 1 - 19 files changed, 576 insertions(+), 296 deletions(-) create mode 100644 gdb/common/forward-scope-exit.h create mode 100644 gdb/common/scope-exit.h