Add target_ops argument to to_supports_multi_process

2014-02-19  Tom Tromey  <tromey@redhat.com>

	* target.h (struct target_ops) <to_supports_multi_process>: Add
	argument.
	(target_supports_multi_process): Add argument.
	* target.c (update_current_target): Update.
	* remote.c (remote_supports_multi_process): Add 'self' argument.
	* linux-nat.c (linux_nat_supports_multi_process): Add 'self'
	argument.
	* darwin-nat.c (darwin_supports_multi_process): Add 'self'
	argument.
This commit is contained in:
Tom Tromey
2013-12-17 21:37:07 -07:00
parent 4c6127599b
commit 86ce266821
6 changed files with 18 additions and 6 deletions

View File

@@ -4566,7 +4566,7 @@ linux_nat_supports_non_stop (struct target_ops *self)
int linux_multi_process = 1;
static int
linux_nat_supports_multi_process (void)
linux_nat_supports_multi_process (struct target_ops *self)
{
return linux_multi_process;
}