diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 10:52:58 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:47:30 -0700 |
commit | d9cb019581e7934faa292b5f9d0caa62be0ceef0 (patch) | |
tree | bb4bc4e036b5d5d321798ecabf5c47ad9fc0d68b /gdb/target.c | |
parent | 830ca33050cbad40e2d57ac9843033048e0160ca (diff) | |
download | gdb-d9cb019581e7934faa292b5f9d0caa62be0ceef0.zip gdb-d9cb019581e7934faa292b5f9d0caa62be0ceef0.tar.gz gdb-d9cb019581e7934faa292b5f9d0caa62be0ceef0.tar.bz2 |
convert to_log_command
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_log_command.
* target.h (struct target_ops) <to_log_command>: Use
TARGET_DEFAULT_IGNORE.
(target_log_command): Unconditionally delegate.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.c b/gdb/target.c index a357cba..db6771e 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -650,7 +650,7 @@ update_current_target (void) /* Do not inherit to_xfer_partial. */ /* Do not inherit to_rcmd. */ /* Do not inherit to_pid_to_exec_file. */ - INHERIT (to_log_command, t); + /* Do not inherit to_log_command. */ INHERIT (to_stratum, t); /* Do not inherit to_has_all_memory. */ /* Do not inherit to_has_memory. */ |