mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
* td_ta_thr_iter.c (iterate_thread_list): Handle special case of
uninitialized __stack_user (zeros), hard-wire just the main thread. * td_thr_get_info.c (td_thr_get_info): Fix ti_lid initialization.
This commit is contained in:
parent
f995807953
commit
a305fd6ad8
@ -1,3 +1,10 @@
|
||||
2002-12-12 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* td_ta_thr_iter.c (iterate_thread_list): Handle special case of
|
||||
uninitialized __stack_user (zeros), hard-wire just the main thread.
|
||||
|
||||
* td_thr_get_info.c (td_thr_get_info): Fix ti_lid initialization.
|
||||
|
||||
2002-12-06 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* td_ta_event_getmsg.c (td_ta_event_getmsg): Write the NEXT pointer
|
||||
|
@ -53,7 +53,7 @@ td_thr_get_info (const td_thrhandle_t *th, td_thrinfo_t *infop)
|
||||
infop->ti_state = TD_THR_UNKNOWN;
|
||||
|
||||
/* Initialization which are the same in both cases. */
|
||||
infop->ti_lid = ps_getpid (th->th_ta_p->ph); /* pds.tid should match */
|
||||
infop->ti_lid = pds.tid ?: ps_getpid (th->th_ta_p->ph);
|
||||
infop->ti_ta_p = th->th_ta_p;
|
||||
infop->ti_startfunc = pds.start_routine;
|
||||
memcpy (&infop->ti_events, &pds.eventbuf.eventmask,
|
||||
|
Loading…
Reference in New Issue
Block a user