aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-nat.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-09-30 19:23:39 +0100
committerPedro Alves <palves@redhat.com>2015-09-30 19:23:39 +0100
commit398e081380a204e3b9fb4eb4da069ccf471f930e (patch)
tree9bf16d198853b1fd7f299665a1b27a1d1d6ea075 /gdb/linux-nat.c
parent4ee959fb247a677b048ce3c59c1399c023a400d9 (diff)
downloadgdb-398e081380a204e3b9fb4eb4da069ccf471f930e.zip
gdb-398e081380a204e3b9fb4eb4da069ccf471f930e.tar.gz
gdb-398e081380a204e3b9fb4eb4da069ccf471f930e.tar.bz2
x86/Linux: reenable all-stop on top of non-stop
Since the record-btrace target now supports non-stop mode, we no longer need to force-disable as-ns on x86. gdb/ChangeLog: 2015-09-30 Pedro Alves <palves@redhat.com> * linux-nat.c (linux_nat_always_non_stop_p): Always return 1. * x86-linux-nat.c (x86_linux_always_non_stop_p): Delete. (x86_linux_create_target): Don't install x86_linux_always_non_stop_p.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r--gdb/linux-nat.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c
index 6423ecc..eb9f5bb 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -4582,8 +4582,6 @@ linux_nat_supports_non_stop (struct target_ops *self)
static int
linux_nat_always_non_stop_p (struct target_ops *self)
{
- if (linux_ops->to_always_non_stop_p != NULL)
- return linux_ops->to_always_non_stop_p (linux_ops);
return 1;
}