aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-nat.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:35:26 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:45:58 -0700
commit2a9a2795ff9602bd1f03b9e55b4c15de3241d384 (patch)
tree61e7f6622ea0ccafe330861e7dcdafeca899d5a1 /gdb/linux-nat.c
parent4ab76ea3fb057381852a9d3b7ac9270fec8e7a7c (diff)
downloadgdb-2a9a2795ff9602bd1f03b9e55b4c15de3241d384.zip
gdb-2a9a2795ff9602bd1f03b9e55b4c15de3241d384.tar.gz
gdb-2a9a2795ff9602bd1f03b9e55b4c15de3241d384.tar.bz2
Add target_ops argument to to_supports_non_stop
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_supports_non_stop>: Add argument. * target.c (find_default_supports_non_stop): Add argument. (target_supports_non_stop): Add argument. (find_default_supports_non_stop): Add 'self' argument. * remote.c (remote_supports_non_stop): Add 'self' argument. * linux-nat.c (linux_nat_supports_non_stop): Add 'self' argument.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r--gdb/linux-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c
index 9652692..cb8b3bd 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -4554,7 +4554,7 @@ linux_nat_can_async_p (struct target_ops *ops)
}
static int
-linux_nat_supports_non_stop (void)
+linux_nat_supports_non_stop (struct target_ops *self)
{
return 1;
}