aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-nat.c
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2021-11-24 11:36:12 +0000
committerAndrew Burgess <aburgess@redhat.com>2021-11-25 10:00:18 +0000
commitfce6cd341b48a2589cb4520c7718c80cb0b27c80 (patch)
tree236e91b872a6a2a2753503bfd2d002365a8844d0 /gdb/linux-nat.c
parent0c1e6e265b276542ccb3f392c3070c3dd9339303 (diff)
downloadgdb-fce6cd341b48a2589cb4520c7718c80cb0b27c80.zip
gdb-fce6cd341b48a2589cb4520c7718c80cb0b27c80.tar.gz
gdb-fce6cd341b48a2589cb4520c7718c80cb0b27c80.tar.bz2
gdb: hoist target_async_permitted checks into target.c
This commit moves the target_async_permitted check out of each targets ::can_async_p method and into the target_can_async_p wrapper function. I've left some asserts in the two ::can_async_p methods that I changed, which will hopefully catch any direct calls to these methods that might be added in the future. There should be no user visible changes after this commit.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r--gdb/linux-nat.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c
index f8f7284..fbb60a3 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -4088,9 +4088,11 @@ linux_nat_target::is_async_p ()
bool
linux_nat_target::can_async_p ()
{
- /* We're always async, unless the user explicitly prevented it with the
- "maint set target-async" command. */
- return target_async_permitted;
+ /* This flag should be checked in the common target.c code. */
+ gdb_assert (target_async_permitted);
+
+ /* Otherwise, this targets is always able to support async mode. */
+ return true;
}
bool