mirror of
https://sourceware.org/git/glibc.git
synced 2026-01-06 11:51:29 +03:00
Update.
* stdlib/longlong.h: Add count_trailing_zeros back.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
1999-11-22 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* td_ta_map_lwp2thr.c: Add missing brace in comparison.
|
||||
|
||||
* thread_dbP.h (LOG): Only print message if __td_debug is nonzero.
|
||||
* td_init.c: Add __td_debug.
|
||||
|
||||
|
||||
@@ -67,7 +67,7 @@ td_ta_map_lwp2thr (const td_thragent_t *ta, lwpid_t lwpid, td_thrhandle_t *th)
|
||||
if (ps_pdread (ta->ph, phc[cnt].h_descr, &pds, sizeof_descr) != PS_OK)
|
||||
return TD_ERR; /* XXX Other error value? */
|
||||
|
||||
if (pds.p_pid ?: ps_getpid (ta->ph) == lwpid)
|
||||
if ((pds.p_pid ?: ps_getpid (ta->ph)) == lwpid)
|
||||
{
|
||||
/* Found it. Now fill in the `td_thrhandle_t' object. */
|
||||
th->th_ta_p = (td_thragent_t *) ta;
|
||||
|
||||
Reference in New Issue
Block a user