diff options
author | Pedro Alves <palves@redhat.com> | 2008-02-21 17:26:16 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-02-21 17:26:16 +0000 |
commit | df7df359192404fa315547684f6f4e3a68daba17 (patch) | |
tree | a733fe3870ec2659450ca1b4daef0466d74d9586 /gdb/remote.c | |
parent | 743ddb6b3d4b5f0f8ae9feeb3365dc061b1cff85 (diff) | |
download | gdb-df7df359192404fa315547684f6f4e3a68daba17.zip gdb-df7df359192404fa315547684f6f4e3a68daba17.tar.gz gdb-df7df359192404fa315547684f6f4e3a68daba17.tar.bz2 |
* remote.c (extended_remote_attach_1): Set attach_flag.
(extended_remote_create_inferior_1): Clear attach_flag.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 9139ea8..8fdc0da 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2874,6 +2874,7 @@ extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty) target_mark_running (target); inferior_ptid = pid_to_ptid (pid); + attach_flag = 1; } static void @@ -5482,6 +5483,7 @@ extended_remote_create_inferior_1 (char *exec_file, char *args, } /* Now mark the inferior as running before we do anything else. */ + attach_flag = 0; inferior_ptid = pid_to_ptid (MAGIC_NULL_PID); if (async_p) target_mark_running (&extended_async_remote_ops); |