diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:35:26 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:58 -0700 |
commit | 2a9a2795ff9602bd1f03b9e55b4c15de3241d384 (patch) | |
tree | 61e7f6622ea0ccafe330861e7dcdafeca899d5a1 /gdb/target.h | |
parent | 4ab76ea3fb057381852a9d3b7ac9270fec8e7a7c (diff) | |
download | binutils-2a9a2795ff9602bd1f03b9e55b4c15de3241d384.zip binutils-2a9a2795ff9602bd1f03b9e55b4c15de3241d384.tar.gz binutils-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/target.h')
-rw-r--r-- | gdb/target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index ceb2f04..c3c117a 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -545,7 +545,7 @@ struct target_ops TARGET_DEFAULT_FUNC (find_default_is_async_p); void (*to_async) (struct target_ops *, async_callback_ftype *, void *) TARGET_DEFAULT_NORETURN (tcomplain ()); - int (*to_supports_non_stop) (void); + int (*to_supports_non_stop) (struct target_ops *); /* find_memory_regions support method for gcore */ int (*to_find_memory_regions) (find_memory_region_ftype func, void *data); /* make_corefile_notes support method for gcore */ |