diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:33:31 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:50 -0700 |
commit | da82bd6b65af8f3cec02621435331983b27d93a0 (patch) | |
tree | fa40610d2bee1e86524890eeddcb480a4951266c /gdb/go32-nat.c | |
parent | d796e1d62f3cf00c48bf8e88d3f4e83848080525 (diff) | |
download | gdb-da82bd6b65af8f3cec02621435331983b27d93a0.zip gdb-da82bd6b65af8f3cec02621435331983b27d93a0.tar.gz gdb-da82bd6b65af8f3cec02621435331983b27d93a0.tar.bz2 |
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.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index 75f6a3e..2e91b12 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -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; } |