diff options
author | Pedro Alves <palves@redhat.com> | 2009-02-06 01:23:00 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-02-06 01:23:00 +0000 |
commit | 6d097e655a5687059556804d993e03ac4eaff7d8 (patch) | |
tree | 945899c5428032bf89252c207fc067bdc6e759da /gdb/remote.c | |
parent | 947b8855e441f5b8616b7c1861e663a4056d2e49 (diff) | |
download | gdb-6d097e655a5687059556804d993e03ac4eaff7d8.zip gdb-6d097e655a5687059556804d993e03ac4eaff7d8.tar.gz gdb-6d097e655a5687059556804d993e03ac4eaff7d8.tar.bz2 |
* remote.c (extended_remote_can_run): Delete.
(init_remote_ops): Don't register it.
* target.c (target_get_osdata): Don't check for target_can_run.
Instead any target that has already been pushed, otherwise
fallback to the default run target..
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 4864dde..8cb37fa 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -8674,15 +8674,6 @@ remote_supports_multi_process (void) return remote_multi_process_p (rs); } -static int -extended_remote_can_run (void) -{ - if (remote_desc != NULL) - return 1; - - return 0; -} - static void init_remote_ops (void) { @@ -8768,7 +8759,6 @@ Specify the serial device it is connected to (e.g. /dev/ttya)."; extended_remote_ops.to_detach = extended_remote_detach; extended_remote_ops.to_attach = extended_remote_attach; extended_remote_ops.to_kill = extended_remote_kill; - extended_remote_ops.to_can_run = extended_remote_can_run; } static int |