From 2a9a2795ff9602bd1f03b9e55b4c15de3241d384 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 17 Dec 2013 21:35:26 -0700 Subject: Add target_ops argument to to_supports_non_stop 2014-02-19 Tom Tromey * target.h (struct target_ops) : 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. --- gdb/target.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/target.h') 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 */ -- cgit v1.1