Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 4 Dec 2002 23:42:21 +0000 (23:42 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 4 Dec 2002 23:42:21 +0000 (23:42 +0000)
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.

argp/tst-argp1.c
nptl_db/ChangeLog
nptl_db/td_ta_thr_iter.c

index 7f29ff2..c72185e 100644 (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.  */
index 5d3fd84..2520fe3 100644 (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
index ca1c82d..87fec01 100644 (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;