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.
This commit is contained in:
Tom Tromey
2013-12-17 21:35:26 -07:00
parent 4ab76ea3fb
commit 2a9a2795ff
5 changed files with 16 additions and 6 deletions

View File

@ -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;
}