*-linux-nat: Handle null inferior in read_description.
authorJohn Baldwin <jhb@FreeBSD.org>
Fri, 14 Jul 2023 15:39:24 +0000 (08:39 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Fri, 14 Jul 2023 15:39:24 +0000 (08:39 -0700)
commita4a688ffa46533bf26d5d27dc7f75c22d90fd638
treefd2a899df1fc435a910b32bdcbd2352eb93e5966
parent97b6e0f6c88d02eac1df0254cdd5c80f40f4869d
*-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.
gdb/aarch64-linux-nat.c
gdb/arm-linux-nat.c
gdb/mips-linux-nat.c
gdb/ppc-linux-nat.c
gdb/riscv-linux-nat.c
gdb/s390-linux-nat.c
gdb/x86-linux-nat.c