diff options
author | John Baldwin <jhb@FreeBSD.org> | 2023-07-14 08:39:24 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2023-07-14 08:39:24 -0700 |
commit | a4a688ffa46533bf26d5d27dc7f75c22d90fd638 (patch) | |
tree | fd2a899df1fc435a910b32bdcbd2352eb93e5966 /gdb/arm-linux-nat.c | |
parent | 97b6e0f6c88d02eac1df0254cdd5c80f40f4869d (diff) | |
download | binutils-a4a688ffa46533bf26d5d27dc7f75c22d90fd638.zip binutils-a4a688ffa46533bf26d5d27dc7f75c22d90fd638.tar.gz binutils-a4a688ffa46533bf26d5d27dc7f75c22d90fd638.tar.bz2 |
*-linux-nat: Handle null inferior in read_description.
Don't invoke ptrace in the target read_description method if there is
not an active inferior to query via ptrace. Instead, use the default
register set for the architecture.
Previously the native target could report an error from a failed
ptrace operation when fetching a tdesc without an attached process.
For example on Linux x86-64:
(gdb) target native
Done. Use the "run" command to start a process.
(gdb) unset tdesc filename
Couldn't get CS register: No such process.
Diffstat (limited to 'gdb/arm-linux-nat.c')
-rw-r--r-- | gdb/arm-linux-nat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/arm-linux-nat.c b/gdb/arm-linux-nat.c index ef3fa00..70c6bc6 100644 --- a/gdb/arm-linux-nat.c +++ b/gdb/arm-linux-nat.c @@ -531,6 +531,9 @@ ps_get_thread_area (struct ps_prochandle *ph, const struct target_desc * arm_linux_nat_target::read_description () { + if (inferior_ptid == null_ptid) + return this->beneath ()->read_description (); + CORE_ADDR arm_hwcap = linux_get_hwcap (); if (have_ptrace_getregset == TRIBOOL_UNKNOWN) |