Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH 0/6] gdb/tui: fix debuginfod related crash
@ 2026-05-01 14:22 Andrew Burgess
  2026-05-01 14:22 ` [PATCH 1/6] gdb/tui: convert a window handle `if` into an `assert` Andrew Burgess
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Andrew Burgess @ 2026-05-01 14:22 UTC (permalink / raw)
  To: gdb-patches; +Cc: Andrew Burgess

This series is an alternative to the latest patches proposed here:

  https://inbox.sourceware.org/gdb-patches/20260417075719.852558-1-tdevries@suse.de

Patches #1, #2, and #3 cover changes that are not part of the above
series, I suspect these will be reasonably non-contentious.

Patch #4 is a small refactor to support the later patches.

Patches #5 and #6 are my take on solving the problem covered by the
above series.

Thanks,
Andrew

---

Andrew Burgess (6):
  gdb/tui: convert a window handle `if` into an `assert`
  gdb/testsuite: fix tuiterm linefeed scrolling new line content
  gdb/tui: prevent TUI activation from a secondary prompt
  gdb/tui: make tui_win_info::rerender public
  gdb/tui: fix for debuginfod prompt while enabling the TUI
  gdb/tui: fix debuginfod prompt using 'C-x C-a' to enter TUI

 .../gdb.tui/activate-from-secondary-prompt.c  |  22 ++
 .../activate-from-secondary-prompt.exp        | 154 +++++++++++
 .../gdb.tui/activate-with-key-combo.c         |  22 ++
 .../gdb.tui/activate-with-key-combo.exp       |  83 ++++++
 gdb/testsuite/gdb.tui/debuginfod-query.c      |  22 ++
 gdb/testsuite/gdb.tui/debuginfod-query.exp    | 242 ++++++++++++++++++
 .../gdb.tui/tui-enable-failure-lib.c          |  31 +++
 gdb/testsuite/gdb.tui/tui-enable-failure.c    |  22 ++
 gdb/testsuite/gdb.tui/tui-enable-failure.exp  | 136 ++++++++++
 gdb/testsuite/gdb.tui/tuiterm.exp             |   2 +-
 gdb/testsuite/lib/gdb.exp                     |  28 ++
 gdb/testsuite/lib/tuiterm.exp                 |   1 +
 gdb/tui/tui-data.h                            |  12 +-
 gdb/tui/tui-hooks.c                           |  21 +-
 gdb/tui/tui-layout.c                          |   3 +-
 gdb/tui/tui-regs.h                            |   4 +-
 gdb/tui/tui-wingeneral.c                      |  13 +-
 gdb/tui/tui-winsource.c                       |   2 +
 gdb/tui/tui-winsource.h                       |   4 +-
 gdb/tui/tui.c                                 | 202 +++++++++++----
 gdb/tui/tui.h                                 |   5 +
 21 files changed, 959 insertions(+), 72 deletions(-)
 create mode 100644 gdb/testsuite/gdb.tui/activate-from-secondary-prompt.c
 create mode 100644 gdb/testsuite/gdb.tui/activate-from-secondary-prompt.exp
 create mode 100644 gdb/testsuite/gdb.tui/activate-with-key-combo.c
 create mode 100644 gdb/testsuite/gdb.tui/activate-with-key-combo.exp
 create mode 100644 gdb/testsuite/gdb.tui/debuginfod-query.c
 create mode 100644 gdb/testsuite/gdb.tui/debuginfod-query.exp
 create mode 100644 gdb/testsuite/gdb.tui/tui-enable-failure-lib.c
 create mode 100644 gdb/testsuite/gdb.tui/tui-enable-failure.c
 create mode 100644 gdb/testsuite/gdb.tui/tui-enable-failure.exp


base-commit: 1a5ae95bc1fde4aeb159e4e963118b17e1e730b5
-- 
2.25.4


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2026-07-27 15:50 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-05-01 14:22 [PATCH 0/6] gdb/tui: fix debuginfod related crash Andrew Burgess
2026-05-01 14:22 ` [PATCH 1/6] gdb/tui: convert a window handle `if` into an `assert` Andrew Burgess
2026-05-01 14:22 ` [PATCH 2/6] gdb/testsuite: fix tuiterm linefeed scrolling new line content Andrew Burgess
2026-05-01 14:22 ` [PATCH 3/6] gdb/tui: prevent TUI activation from a secondary prompt Andrew Burgess
2026-05-01 14:22 ` [PATCH 4/6] gdb/tui: make tui_win_info::rerender public Andrew Burgess
2026-05-01 14:22 ` [PATCH 5/6] gdb/tui: fix for debuginfod prompt while enabling the TUI Andrew Burgess
2026-05-01 14:22 ` [PATCH 6/6] gdb/tui: fix debuginfod prompt using 'C-x C-a' to enter TUI Andrew Burgess
2026-07-10  9:47 ` [PATCHv2 0/6] gdb/tui: fix debuginfod related crash Andrew Burgess
2026-07-10  9:47   ` [PATCHv2 1/6] gdb/tui: convert a window handle `if` into an `assert` Andrew Burgess
2026-07-10  9:47   ` [PATCHv2 2/6] gdb/testsuite: fix tuiterm linefeed scrolling new line content Andrew Burgess
2026-07-10  9:47   ` [PATCHv2 3/6] gdb/tui: prevent TUI activation from a secondary prompt Andrew Burgess
2026-07-10  9:47   ` [PATCHv2 4/6] gdb/tui: make tui_win_info::rerender public Andrew Burgess
2026-07-10  9:47   ` [PATCHv2 5/6] gdb/tui: fix for debuginfod prompt while enabling the TUI Andrew Burgess
2026-07-10  9:47   ` [PATCHv2 6/6] gdb/tui: fix debuginfod prompt using 'C-x C-a' to enter TUI Andrew Burgess
2026-07-27 15:50   ` [PATCHv2 0/6] gdb/tui: fix debuginfod related crash Andrew Burgess

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox