2007-12-02 Pierre Muller <muller@ics.u-strasbg.fr>
* win32-nat.c (win32_resume): Set the trace bit in the thread identified by inferior_ptid.
This commit is contained in:
parent
bf25528d6b
commit
677d7bec62
3 changed files with 9 additions and 3 deletions
|
@ -1,6 +1,12 @@
|
|||
2007-12-02 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
*win32-nat.c (open_process_used): New static variable.
|
||||
* win32-nat.c (win32_resume): Set the trace bit
|
||||
in the thread identified by inferior_ptid.
|
||||
|
||||
|
||||
2007-12-02 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
* win32-nat.c (open_process_used): New static variable.
|
||||
(win32_init_thread_list): Remove call to CloseHandle for thread.
|
||||
(win32_delete_thread): Ditto.
|
||||
(fake_create_process): Set open_process_used if OpenProcess call is
|
||||
|
|
|
@ -1232,7 +1232,7 @@ win32_resume (ptid_t ptid, int step, enum target_signal sig)
|
|||
pid, step, sig));
|
||||
|
||||
/* Get context for currently selected thread */
|
||||
th = thread_rec (current_event.dwThreadId, FALSE);
|
||||
th = thread_rec (PIDGET (inferior_ptid), FALSE);
|
||||
if (th)
|
||||
{
|
||||
if (step)
|
||||
|
|
|
@ -1232,7 +1232,7 @@ win32_resume (ptid_t ptid, int step, enum target_signal sig)
|
|||
pid, step, sig));
|
||||
|
||||
/* Get context for currently selected thread */
|
||||
th = thread_rec (current_event.dwThreadId, FALSE);
|
||||
th = thread_rec (PIDGET (inferior_ptid), FALSE);
|
||||
if (th)
|
||||
{
|
||||
if (step)
|
||||
|
|
Loading…
Add table
Reference in a new issue