diff options
author | Pedro Alves <palves@redhat.com> | 2015-08-06 18:23:01 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-08-07 17:26:21 +0100 |
commit | f12899e9f081bb857c96999386e64a4252c4a325 (patch) | |
tree | c7509cad428112552706e3a8e8a53d548206f5ae /gdb/linux-nat.c | |
parent | 5ac213430b710e8aaed1f4cea6ff809783201df9 (diff) | |
download | gdb-f12899e9f081bb857c96999386e64a4252c4a325.zip gdb-f12899e9f081bb857c96999386e64a4252c4a325.tar.gz gdb-f12899e9f081bb857c96999386e64a4252c4a325.tar.bz2 |
native Linux: enable always non-stop by default
The testsuite shows no regressions with this forced on, on:
- Native x86_64 Fedora 20, with and output "set displaced off".
- Native x86_64 Fedora 20, on top of x86 software single-step series.
- PPC64 Fedora 18.
- S/390 RHEL 7.1.
Let's try making it the default.
gdb/ChangeLog:
2015-08-07 Pedro Alves <palves@redhat.com>
* linux-nat.c (linux_nat_always_non_stop_p): Return 1.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 19d452c..be7a915 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -4594,7 +4594,7 @@ linux_nat_supports_non_stop (struct target_ops *self) static int linux_nat_always_non_stop_p (struct target_ops *self) { - return 0; + return 1; } /* True if we want to support multi-process. To be removed when GDB |