diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:19:04 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:03 -0700 |
commit | 9a7d8b4812687f9fed3e495024b166f04af44def (patch) | |
tree | e60e382f95c4dcb7f2c6a5d128a13fb49dcd5a93 /gdb/target.c | |
parent | d9db5b2141d86dafe7b437f521ee98beffac381d (diff) | |
download | binutils-9a7d8b4812687f9fed3e495024b166f04af44def.zip binutils-9a7d8b4812687f9fed3e495024b166f04af44def.tar.gz binutils-9a7d8b4812687f9fed3e495024b166f04af44def.tar.bz2 |
convert to_can_use_agent
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_can_use_agent.
* target.h (struct target_ops) <to_can_use_agent>: Use
TARGET_DEFAULT_RETURN.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/target.c b/gdb/target.c index a11cc91..b874ce0 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -712,7 +712,7 @@ update_current_target (void) /* Do not inherit to_static_tracepoint_markers_by_strid. */ /* Do not inherit to_traceframe_info. */ /* Do not inherit to_use_agent. */ - INHERIT (to_can_use_agent, t); + /* Do not inherit to_can_use_agent. */ INHERIT (to_augmented_libraries_svr4_read, t); INHERIT (to_magic, t); INHERIT (to_supports_evaluation_of_breakpoint_conditions, t); @@ -754,9 +754,6 @@ update_current_target (void) de_fault (to_can_run_breakpoint_commands, (int (*) (struct target_ops *)) return_zero); - de_fault (to_can_use_agent, - (int (*) (struct target_ops *)) - return_zero); de_fault (to_augmented_libraries_svr4_read, (int (*) (struct target_ops *)) return_zero); |