diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:28:07 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:07 -0700 |
commit | 46ee7e8d84bb33c3c6c5dc8673ee2ca5457462b0 (patch) | |
tree | b72bbc8b396e0d3a3efc7b25427624f490974f24 /gdb/target.c | |
parent | 843f59ed2647d73ed7ba46885ac3820ff97fbdc5 (diff) | |
download | gdb-46ee7e8d84bb33c3c6c5dc8673ee2ca5457462b0.zip gdb-46ee7e8d84bb33c3c6c5dc8673ee2ca5457462b0.tar.gz gdb-46ee7e8d84bb33c3c6c5dc8673ee2ca5457462b0.tar.bz2 |
convert to_stop
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_stop.
* target.h (struct target_ops) <to_stop>: Use
TARGET_DEFAULT_IGNORE.
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 6533e7e..0432dfd 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -655,7 +655,7 @@ update_current_target (void) /* Do not inherit to_pid_to_str. */ /* Do not inherit to_extra_thread_info. */ /* Do not inherit to_thread_name. */ - INHERIT (to_stop, t); + /* Do not inherit to_stop. */ /* Do not inherit to_xfer_partial. */ /* Do not inherit to_rcmd. */ /* Do not inherit to_pid_to_exec_file. */ @@ -745,9 +745,6 @@ update_current_target (void) de_fault (to_can_run, (int (*) (struct target_ops *)) return_zero); - de_fault (to_stop, - (void (*) (struct target_ops *, ptid_t)) - target_ignore); current_target.to_read_description = NULL; #undef de_fault |