aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2011-03-08 12:46:52 +0000
committerPedro Alves <palves@redhat.com>2011-03-08 12:46:52 +0000
commit63154eca7b36effea83973fe140981e5b7f83428 (patch)
treef431738e255e45e7650d2f1797f6225d5d91ddbb /gdb/remote.c
parentf1a507a15eef00a452f75c8be0f8a39e97a3f244 (diff)
downloadgdb-63154eca7b36effea83973fe140981e5b7f83428.zip
gdb-63154eca7b36effea83973fe140981e5b7f83428.tar.gz
gdb-63154eca7b36effea83973fe140981e5b7f83428.tar.bz2
gdb/
2011-03-08 Pedro Alves <pedro@codesourcery.com> * remote.c (remote_check_symbols): Skip if the target has no execution. gdb/testsuite/ 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com> * gdb.server/ext-run.exp (load new file without any gdbserver inferior): New test.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r--gdb/remote.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c
index 8c4176c..3034e61 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -3435,10 +3435,19 @@ remote_check_symbols (struct objfile *objfile)
struct minimal_symbol *sym;
int end;
+ /* The remote side has no concept of inferiors that aren't running
+ yet, it only knows about running processes. If we're connected
+ but our current inferior is not running, we should not invite the
+ remote target to request symbol lookups related to its
+ (unrelated) current process. */
+ if (!target_has_execution)
+ return;
+
if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
return;
- /* Make sure the remote is pointing at the right process. */
+ /* Make sure the remote is pointing at the right process. Note
+ there's no way to select "no process". */
set_general_process ();
/* Allocate a message buffer. We can't reuse the input buffer in RS,