diff options
author | Pierre Muller <muller@sourceware.org> | 2008-10-02 14:20:07 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2008-10-02 14:20:07 +0000 |
commit | 9f9d052e600ed9436f9fd558d62a189c8cc3d43e (patch) | |
tree | d8040277d36124c2d7638afb6a941f2bf5774139 /gdb/windows-nat.c | |
parent | e1e87d1e172ce154bafd12cff5caaacc86d4c353 (diff) | |
download | gdb-9f9d052e600ed9436f9fd558d62a189c8cc3d43e.zip gdb-9f9d052e600ed9436f9fd558d62a189c8cc3d43e.tar.gz gdb-9f9d052e600ed9436f9fd558d62a189c8cc3d43e.tar.bz2 |
* win32-nat.c (do_initial_win32_stuff): Set inferior_ptid.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 03b2f52..cd4d533 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -1550,6 +1550,12 @@ do_initial_win32_stuff (DWORD pid, int attaching) inf = add_inferior (pid); inf->attach_flag = attaching; + /* Make the new process the current inferior, so terminal handling + can rely on it. When attaching, we don't know about any thread + id here, but that's OK --- nothing should be referencing the + current thread until we report an event out of win32_wait. */ + inferior_ptid = pid_to_ptid (pid); + terminal_init_inferior_with_pgrp (pid); target_terminal_inferior (); |