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 26d23d8e024 Remove tui_refresh_cmd_win new 4764e22161c gdb: make breakpoint_debug_printf global new 3debc0b3480 gdb: add another overload of startswith new 5a7cfbb424d gdb: create new is_thread_id helper function new c6b486755e0 gdb: parse pending breakpoint thread/task immediately new 85eb08c5f05 gdb: don't set breakpoint::pspace in create_breakpoint new 6cce025114c gdb: only insert thread-specific breakpoints in the relevan [...]
The 6 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/Makefile.in | 2 + gdb/NEWS | 11 + gdb/ada-lang.c | 6 +- gdb/break-catch-throw.c | 6 +- gdb/break-cond-parse.c | 702 +++++++++++++++++++++ gdb/break-cond-parse.h | 52 ++ gdb/breakpoint.c | 671 ++++++++++---------- gdb/breakpoint.h | 63 +- gdb/testsuite/gdb.ada/tasks.exp | 6 +- gdb/testsuite/gdb.base/condbreak.exp | 57 +- gdb/testsuite/gdb.base/pending.exp | 30 +- gdb/testsuite/gdb.linespec/explicit.exp | 14 +- gdb/testsuite/gdb.linespec/keywords.exp | 8 +- gdb/testsuite/gdb.mi/mi-dprintf-pending.exp | 3 +- gdb/testsuite/gdb.mi/new-ui-bp-deleted.exp | 8 +- .../gdb.mi/user-selected-context-sync.exp | 14 +- gdb/testsuite/gdb.multi/bp-thread-specific.exp | 7 +- gdb/testsuite/gdb.multi/inferior-specific-bp.exp | 16 +- gdb/testsuite/gdb.multi/multi-target-continue.exp | 2 +- .../gdb.multi/multi-target-ping-pong-next.exp | 4 +- ...thread-specific.c => pending-bp-del-inferior.c} | 6 +- .../gdb.multi/pending-bp-del-inferior.exp | 214 +++++++ gdb/testsuite/gdb.multi/pending-bp.exp | 206 ++++++ gdb/testsuite/gdb.multi/tids.exp | 6 +- .../del-pending-thread-bp-lib.c} | 2 +- .../del-pending-thread-bp.c} | 57 +- .../gdb.threads/del-pending-thread-bp.exp | 98 +++ gdb/tid-parse.c | 82 ++- gdb/tid-parse.h | 8 + gdbsupport/common-utils.h | 10 + 30 files changed, 1901 insertions(+), 470 deletions(-) create mode 100644 gdb/break-cond-parse.c create mode 100644 gdb/break-cond-parse.h copy gdb/testsuite/gdb.multi/{bp-thread-specific.c => pending-bp-del-inferior.c} (91%) create mode 100644 gdb/testsuite/gdb.multi/pending-bp-del-inferior.exp copy gdb/testsuite/{gdb.multi/pending-bp-lib.c => gdb.threads/del-pending-thread-b [...] copy gdb/testsuite/{gdb.multi/pending-bp.c => gdb.threads/del-pending-thread-bp.c} (59%) create mode 100644 gdb/testsuite/gdb.threads/del-pending-thread-bp.exp