Add target_ops argument to to_can_run

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

	* windows-nat.c (windows_can_run): Add 'self' argument.
	* target.h (struct target_ops) <to_can_run>: Add argument.
	(target_can_run): Add argument.
	* target.c (debug_to_can_run): Add argument.
	(update_current_target): Update.
	* nto-procfs.c (procfs_can_run): Add 'self' argument.
	* inf-child.c (inf_child_can_run): Add 'self' argument.
	* go32-nat.c (go32_can_run): Add 'self' argument.
This commit is contained in:
Tom Tromey
2013-12-17 21:33:31 -07:00
parent d796e1d62f
commit da82bd6b65
7 changed files with 22 additions and 10 deletions

View File

@@ -737,7 +737,7 @@ go32_mourn_inferior (struct target_ops *ops)
}
static int
go32_can_run (void)
go32_can_run (struct target_ops *self)
{
return 1;
}