public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
[PATCH 0/5] GDB Synchronous Signal Handling
 2021-07-21 18:08 UTC  (6+ messages)
` [PATCHv2 0/6] "
  ` [PATCHv2 1/6] gdb: terminate upon receipt of SIGFPE
  ` [PATCHv2 2/6] gdb: register signal handler after setting up event token
  ` [PATCHv2 3/6] gdb: rename async_init_signals to gdb_init_signals
  ` [PATCHv2 4/6] gdb: print backtrace on fatal SIGSEGV

[PATCH] Fix for mi-reverse.exp
 2021-07-21 17:46 UTC  (2+ messages)

[PATCH] fix for gdb.python/python.exp
 2021-07-21 17:41 UTC  (2+ messages)

[PATCH] Fix for gdb.python/py-breakpoint.exp
 2021-07-21 17:38 UTC  (3+ messages)

[PATCH] Fixes for the finish-reverse-bkpt.exp test
 2021-07-21 17:31 UTC 

[PATCH] Fix for gdb.tui/tui-layout-asm.exp
 2021-07-21 17:30 UTC 

[PATCH] gdb: Print debuginfod first-use notification
 2021-07-21 17:25 UTC  (5+ messages)
` [PING**2][PATCH] "
  ` [PATCH v2] "

[PATCH] Fixes for mi-fortran-modules.exp fixes
 2021-07-21 17:04 UTC 

[PATCH] finish-reverse fix for setting break on correct entry point when executing in reverse
 2021-07-21 16:39 UTC  (2+ messages)

[PATCH] Allow use of Pygments to colorize source code
 2021-07-21 16:07 UTC  (2+ messages)

[PATCH][gdb/testsuite] Fix gdb.cp/step-and-next-inline.exp with gcc-11
 2021-07-21 15:59 UTC  (3+ messages)

[PATCH] gdb: consider null terminator for length arguments of value_cstring calls
 2021-07-21 15:21 UTC  (7+ messages)

[PATCH][gdb/testsuite] Fix FAILs due to PR gcc/101452
 2021-07-21 12:26 UTC  (2+ messages)
` [committed][gdb/testsuite] "

[committed][gdb/testsuite] Add KFAILs for gdb.ada FAILs with gcc-11
 2021-07-21 12:24 UTC 

[PATCH 00/16] Bunch of commands related cleanups
 2021-07-20 23:03 UTC  (27+ messages)
` [PATCH 01/16] gdb/testsuite: split gdb.python/py-parameter.exp in procs
` [PATCH 02/16] gdb.base/setshow.exp: use save_vars to save/restore gdb_prompt
` [PATCH 03/16] gdb.base/setshow.exp: split in procs
` [PATCH 04/16] gdb.base/setshow.exp: fix duplicate test name
` [PATCH 05/16] gdb: un-share set_inferior_cwd declaration
` [PATCH 06/16] gdb: remove inferior::{argc,argv}
` [PATCH 07/16] gdb: add setter/getter for inferior arguments
` [PATCH 08/16] gdb: add setter/getter for inferior cwd
` [PATCH 09/16] gdb: make inferior::m_args an std::string
` [PATCH 10/16] gdb: make inferior::m_cwd "
` [PATCH 11/16] gdb: make inferior::m_terminal "
` [PATCH 12/16] gdb: rename cfunc to simple_func
` [PATCH 13/16] gdb: remove cmd_list_element::function::sfunc
` [PATCH 14/16] gdb/testsuite: test get/set value of unregistered Guile parameter
` [PATCH 15/16] gdb: make cmd_list_element var an optional union
` [PATCH 16/16] gdb: make string-like set show commands use std::string variable

[RFC PATCH 0/7] FreeBSD target async mode and related refactoring
 2021-07-20 22:35 UTC  (18+ messages)
` [RFC PATCH 1/7] gdbsupport: Add an event-pipe class
` [RFC PATCH 2/7] gdb linux-nat: Convert linux_nat_event_pipe to the event_pipe class
` [RFC PATCH 4/7] fbsd-nat: Implement async target support
` [RFC PATCH 5/7] fbsd nat: Include ptrace operation in error messages

[PATCHv2 0/2] Fix for an assertion when unwinding with inline frames
 2021-07-20 21:59 UTC  (5+ messages)
` [PATCHv3 "
  ` [PATCHv3 1/2] gdb: prevent an assertion when computing the frame_id for an inline frame
  ` [PATCHv3 2/2] gdb: remove VALUE_FRAME_ID

[PATCH] gdb/testsuite: capture GDB tty name in default_gdb_spawn
 2021-07-20 20:28 UTC  (11+ messages)

[PATCH 3/3] Fix reverse stepping multiple contiguous PC ranges
 2021-07-20 15:06 UTC  (3+ messages)

[RFC][gdb/symtab] Fix FAILs in gdb.base/langs.exp with gcc-11
 2021-07-20 11:02 UTC 

[PATCH] [AArch64] MTE corefile support
 2021-07-19 19:05 UTC  (6+ messages)
` [PATCH,v5][AArch64] "
  ` [PING][PATCH,v5][AArch64] "

[PATCH] Fix printing of non pointer types when memory tagging is enabled
 2021-07-19 18:50 UTC  (14+ messages)
                  ` [PATCH v3] Fix printing of non-address "

[PATCH] Avoid expression parsing crash with unknown language
 2021-07-19 17:08 UTC  (5+ messages)

[PATCH] gdb: Make the builtin "boolean" type an unsigned type
 2021-07-19 16:31 UTC 

[PATCH] gdb: Fix numerical field extraction for target description "flags"
 2021-07-19 16:29 UTC 

[PATCH] gdb: nat/x86-dregs.c: add and use x86_dr_low_can_get_status
 2021-07-19 14:44 UTC  (4+ messages)

GDB 11.1 release prep update (2021-07-17)
 2021-07-19 13:49 UTC  (2+ messages)

[PATCH] gdb: set current thread in btrace_compute_ftrace_1
 2021-07-19 13:36 UTC  (6+ messages)

[PATCH][gdb/testsuite] Fix gdb.mi/mi-info-sources.exp for extra debug info
 2021-07-19  9:33 UTC  (3+ messages)

[PATCH] gdb: convert nat/x86-dregs.c macros to functions
 2021-07-18  2:52 UTC  (3+ messages)

[PATCH] Use /bin/sh as shebang in gdb/make-init-c
 2021-07-18  2:45 UTC  (5+ messages)

[PATCHv2 1/2] Implement locals TUI window
 2021-07-17 19:19 UTC  (3+ messages)
` [PATCHv2 2/2] Use method children instead of to_string in pretty printers

[PATCH 0/7] Fix dup-psym.exp with DWARF index
 2021-07-17 17:09 UTC  (6+ messages)
` [PATCH 5/7] Simplify DWARF file name caching

GDB 11.1 release prep update (2021-07-11)
 2021-07-17 14:37 UTC  (9+ messages)

[PATCH 00/11] Various thread lists optimizations
 2021-07-17 12:54 UTC  (17+ messages)
` [PATCH 03/11] gdb: make inferior_list use intrusive_list
        ` [PATCH] gdb: make all_inferiors_safe actually work
` [PATCH 07/11] gdb: maintain per-process-target list of resumed threads with pending wait status
` [PATCH 11/11] gdb: optimize all_matching_threads_iterator

[PATCH v3 0/2] Fix gdb.base/sigstep.exp for riscv64-linux
 2021-07-16 22:13 UTC  (2+ messages)

[PATCH] Add typesafe getter/setter for cmd_list_element.var
 2021-07-16 20:35 UTC 

[PATCH] Document quick_symbol_functions::expand_symtabs_matching invariant
 2021-07-16 19:54 UTC  (2+ messages)

[PATCH 0/2] Fix decoding of some Ada names
 2021-07-16 19:49 UTC  (3+ messages)
` [PATCH 1/2] Remove uses of fprintf_symbol_filtered
` [PATCH 2/2] Handle compiler-generated suffixes in Ada names

[PATCH 0/5] Fix Ada qualification bug
 2021-07-16 19:17 UTC  (6+ messages)
` [PATCH 1/5] Remove add_symbols_from_enclosing_procs
` [PATCH 2/5] Refactor Ada resolution
` [PATCH 3/5] Defer Ada character literal resolution
` [PATCH 4/5] Remove the type_qualifier global
` [PATCH 5/5] Handle type qualifier for enumeration name

[PATCH] Fix array stride bug
 2021-07-16 14:29 UTC  (2+ messages)

[PATCH] TUI disassembly window improvement, take 2
 2021-07-16 11:25 UTC  (6+ messages)
` [PATCH] [PING] "
  ` [PATCH] [PING #2] "
    ` [PATCH] [PING #3] "
      ` [PING][#4][PATCH] "
        ` [PING][#5][PATCH] "

[PATCH v2 2/3] RISC-V: PR27916, Support mapping symbols
 2021-07-16  2:58 UTC  (3+ messages)

[PATCH v3 0/3] Follow fork improvements
 2021-07-15 19:31 UTC  (11+ messages)
` [PATCH v3 1/3] gdb: call post_create_inferior at end of follow_fork_inferior
` [PATCH v3 2/3] gdb: pass child_ptid and fork kind to target_ops::follow_fork
` [PATCH v3 3/3] gdb: follow-fork: push target and add thread in target_follow_fork

[RFC][PATCH 1/3] [gdb] Fix parsing of auxiliary vector on Solaris
 2021-07-15 12:56 UTC  (4+ messages)
  ` [External] : "

[PATCH 0/1] Improve CSKY arch support
 2021-07-15  7:22 UTC  (2+ messages)
` [PATCH 1/1] gdb:csky rm tdesc_has_registers in csky_register_name

[PATCH v3] [gdb] Add Z80 CPU basic support
 2021-07-15  7:19 UTC  (9+ messages)
` [PATCH v4] [gdb] Add basic Z80 CPU support
            ` [PATCH v5] "

[PATCH] [PR gdb/27570] missing support for debuginfod in core_target::build_file_mappings
 2021-07-15  2:21 UTC  (4+ messages)
` [PATCH v2] "
  ` [PING**2][PATCH "

[PATCH v2 0/3] RISC-V: The series to supporting mapping symbols
 2021-07-15  1:47 UTC  (6+ messages)
` [PATCH v2 1/3] RISC-V: Enable elf attributes when default configure option isn't set

[RFC][PATCH 3/3] [gdb/procfs.c] Build failure in find_stop_signal
 2021-07-15  0:48 UTC  (2+ messages)

[RFC][PATCH 2/3] [bfd] Add Solaris specific ELF note processing
 2021-07-15  0:46 UTC  (2+ messages)

[PATCH v2 3/3] RISC-V: PR27916, Extend .insn directive to support hardcode encoding
 2021-07-14 20:38 UTC  (2+ messages)

[PATCH 0/8] Switch FreeBSD x86 to using register maps for GP registers
 2021-07-14 14:07 UTC  (9+ messages)
` [PATCH 1/8] Remove vestigal FreeBSD/i386 3.x support
` [PATCH 2/8] Remove support for pre-5.0 FreeBSD/i386 signal trampolines
` [PATCH 3/8] FreeBSD x86: Remove fallback for detecting signal trampolines by address
` [PATCH 4/8] regcache: Zero-extend small registers described by a register map
` [PATCH 5/8] Use register maps for gp regsets on FreeBSD/x86 core dumps
` [PATCH 6/8] FreeBSD x86: Use tramp-frame for signal frames
` [PATCH 7/8] fbsd-nat: Return a bool from fetch_register_set and store_register_set
` [PATCH 8/8] FreeBSD x86 nat: Use register maps for GP register sets

[PATCH] Update the NetBSD system call table to match NetBSD-current
 2021-07-14 11:14 UTC 

[committed][gdb/testsuite] Fix gdb.base/gold-gdb-index.exp
 2021-07-14  9:37 UTC 

[PATCH] [gdb/testsuite] templates.exp to accept clang++ output
 2021-07-14  5:47 UTC 

[PATCH] gdb: clean up some things in features/Makefile
 2021-07-14  5:30 UTC 

[committed][gdb/testsuite] Add missing skip_tui_tests
 2021-07-14  4:53 UTC 

[PATCH 0/2] glibc-2.34: Fix gdb.base/gdb-sigterm.exp failure/error
 2021-07-14  0:07 UTC  (5+ messages)
` [PATCH 2/2] glibc-2.34: Fix internal error when running gdb.base/gdb-sigterm.exp

gdb compile for powerpc64 target - Could not find symbol ".TOC."
 2021-07-13 22:59 UTC  (11+ messages)

[PATCH v2 00/16] Interrupting programs that block/ignore SIGINT
 2021-07-13 15:26 UTC  (4+ messages)
` [PATCH v2 15/16] GNU/Linux: Interrupt/Ctrl-C with SIGSTOP instead of SIGINT [PR gdb/9425, PR gdb/14559]

[PATCH 00/10] Step over thread exit (PR gdb/27338)
 2021-07-13 15:08 UTC  (4+ messages)

[PATCH] gdb, dwarf: Don't follow the parent of a subprogram to get a prefix
 2021-07-13 13:32 UTC  (9+ messages)

[PATCH][gdb/testsuite] Fix check-libthread-db.exp FAILs with glibc 2.33
 2021-07-13 13:31 UTC  (5+ messages)

[PATCH v4 1/2] gdb: generalize commit_resume, avoid commit-resuming when threads have pending statuses
 2021-07-13 13:27 UTC  (6+ messages)
` [PATCH master + 11] gdb: disable commit-resumed on -exec-interrupt --thread-group

[PATCH 0/2] Fix detach with target remote (PR gdb/28080)
 2021-07-13 13:25 UTC  (8+ messages)
` [PATCH 1/2] "
` [PATCH 2/2] Avoid letting exceptions escape gdb_bfd_iovec_fileio_close "

[PATCH v2 0/5] Add helper functions for FreeBSD native targets
 2021-07-13 12:45 UTC  (2+ messages)

[PATCH] Fix some dangling references to `netbsd-tdep`
 2021-07-13  4:53 UTC  (3+ messages)
` [PATCH v2] "

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).