2002-12-04  Ulrich Drepper  <drepper@redhat.com>

	* td_ta_thr_iter.c (iterate_thread_list): At end of iteration read
	pointer to the next element from inferior.
This commit is contained in:
Ulrich Drepper 2002-12-04 23:42:21 +00:00
parent c4a6d85994
commit abbd6175b4
3 changed files with 11 additions and 1 deletions

View File

@ -97,7 +97,7 @@ int
main (void)
{
int argc = 2;
char *argv[3] = { "tst-argp1", "--help", NULL };
char *argv[3] = { (char *) "tst-argp1", (char *) "--help", NULL };
int remaining;
/* Parse and process arguments. */

View File

@ -1,3 +1,8 @@
2002-12-04 Ulrich Drepper <drepper@redhat.com>
* td_ta_thr_iter.c (iterate_thread_list): At end of iteration read
pointer to the next element from inferior.
2002-12-02 Roland McGrath <roland@redhat.com>
* td_symbol_list.c (symbol_list_arr): pthread_keys -> __pthread_keys

View File

@ -90,6 +90,11 @@ iterate_thread_list (const td_thragent_t *ta, td_thr_iter_f *callback,
return TD_DBERR;
}
}
/* Get the pointer to the next element. */
if (ps_pdread (ta->ph, &((struct pthread *) addr)->header.data.list,
&list, sizeof (list_t)) != PS_OK)
return TD_ERR; /* XXX Other error value? */
}
return result;