* infttrate.c (child_acknowledge_created_inferior): Pass
correct argument to add_thread. (update_thread_state_after_attach): Likewise.
This commit is contained in:
parent
80fcf3f023
commit
6c482b8720
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Dec 19 12:18:57 2001 Jeffrey A Law (law@redhat.com)
|
||||
|
||||
* infttrate.c (child_acknowledge_created_inferior): Pass
|
||||
correct argument to add_thread.
|
||||
(update_thread_state_after_attach): Likewise.
|
||||
|
||||
2001-12-19 Fernando Nasser <fnasser@redhat.com>
|
||||
|
||||
* config/arm/tm-arm.h: Properly define SOFTWARE_SINGLE_STEP_P.
|
||||
|
|
|
@ -3123,7 +3123,7 @@ child_acknowledge_created_inferior (int pid)
|
|||
* the process safely to ask what it is. Anyway, we'll
|
||||
* add it when it gets the EXEC event.
|
||||
*/
|
||||
add_thread (pid); /* in thread.c */
|
||||
add_thread (pid_to_ptid (pid)); /* in thread.c */
|
||||
|
||||
/* We can now set the child's ttrace event mask.
|
||||
*/
|
||||
|
@ -4764,7 +4764,7 @@ update_thread_state_after_attach (int pid, attach_continue_t kind_of_go)
|
|||
}
|
||||
}
|
||||
|
||||
add_thread (tid); /* in thread.c */
|
||||
add_thread (pid_to_ptid (pid)); /* in thread.c */
|
||||
}
|
||||
|
||||
#ifdef PARANOIA
|
||||
|
|
Loading…
Reference in a new issue