diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/linux-nat.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4c95b27..493ec61 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2015-08-07 Pedro Alves <palves@redhat.com> + * linux-nat.c (linux_nat_always_non_stop_p): Return 1. + +2015-08-07 Pedro Alves <palves@redhat.com> + * s390-linux-tdep.c (is_non_branch_ril) (s390_displaced_step_copy_insn): New functions. (s390_displaced_step_fixup): Update comment. 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 |