diff options
author | Roland McGrath <roland@gnu.org> | 2002-12-05 03:45:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-12-05 03:45:22 +0000 |
commit | 44de49707eeab00096e360cb8873a24d90ff8a56 (patch) | |
tree | 0d9ba8cb9017481daf9749a8e4500d584aeeb3b9 | |
parent | eaa4099fd64e99dd3c86d993e18a87bc0207c5ed (diff) | |
download | glibc-44de49707eeab00096e360cb8873a24d90ff8a56.tar glibc-44de49707eeab00096e360cb8873a24d90ff8a56.tar.gz glibc-44de49707eeab00096e360cb8873a24d90ff8a56.tar.bz2 glibc-44de49707eeab00096e360cb8873a24d90ff8a56.zip |
2002-12-04 Roland McGrath <roland@redhat.com>
* td_thr_get_info.c (td_thr_get_info): ti_tid is pthread_t, not a PID.
-rw-r--r-- | nptl_db/td_thr_get_info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl_db/td_thr_get_info.c b/nptl_db/td_thr_get_info.c index 0686649d54..131a783513 100644 --- a/nptl_db/td_thr_get_info.c +++ b/nptl_db/td_thr_get_info.c @@ -38,7 +38,7 @@ td_thr_get_info (const td_thrhandle_t *th, td_thrinfo_t *infop) results for the fields we do not fill in. */ memset (infop, '\0', sizeof (td_thrinfo_t)); - infop->ti_tid = pds.tid; + infop->ti_tid = th->th_unique; infop->ti_tls = (char *) pds.specific; infop->ti_pri = (pds.schedpolicy == SCHED_OTHER ? 0 : pds.schedparam.sched_priority); @@ -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); + infop->ti_lid = ps_getpid (th->th_ta_p->ph); /* pds.tid should match */ infop->ti_ta_p = th->th_ta_p; infop->ti_startfunc = pds.start_routine; memcpy (&infop->ti_events, &pds.eventbuf.eventmask, |