[Ada] Add ada-tasks.c:iterate_over_live_ada_tasks
authorJoel Brobecker <brobecker@gnat.com>
Tue, 28 Sep 2010 21:39:03 +0000 (21:39 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Tue, 28 Sep 2010 21:39:03 +0000 (21:39 +0000)
This new function is needed by the ravenscar-thread layer.

gdb/ChangeLog:

        * ada-tasks.c (iterate_over_live_ada_tasks): New function.
        * ada-lang.h (iterate_over_live_ada_tasks): Declare.

gdb/ChangeLog
gdb/ada-lang.h
gdb/ada-tasks.c

index 440f1411846b1fc313a33990710f59619e9e4445..416f5a978f039324e7e262c138cbc27c1c572dbb 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-28  Joel Brobecker  <brobecker@adacore.com>
+
+       * ada-tasks.c (iterate_over_live_ada_tasks): New function.
+       * ada-lang.h (iterate_over_live_ada_tasks): Declare.
+
 2010-09-27  Pierre Muller  <muller@ics.u-strasbg.fr>
 
        * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
index d1e8ca50c51b51b307886ef01350cf230518aca5..935c2e146f9657deef0ae2156bfb7051e2fdda2b 100644 (file)
@@ -378,6 +378,10 @@ extern int valid_task_id (int);
 
 extern int ada_get_task_number (ptid_t);
 
+typedef void (ada_task_list_iterator_ftype) (struct ada_task_info *task);
+extern void iterate_over_live_ada_tasks
+  (ada_task_list_iterator_ftype *iterator);
+
 extern int ada_build_task_list (int warn_if_null);
 
 extern int ada_exception_catchpoint_p (struct breakpoint *b);
index 8e42252d42e3fe62e27ff794305d284bd25150c0..3cbcc4fe4df35c86ffbe8879ebedc4277b1e705b 100644 (file)
@@ -212,6 +212,27 @@ ada_task_is_alive (struct ada_task_info *task_info)
   return (task_info->state != Terminated);
 }
 
+/* Call the ITERATOR function once for each Ada task that hasn't been
+   terminated yet.  */
+
+void
+iterate_over_live_ada_tasks (ada_task_list_iterator_ftype *iterator)
+{
+  int i, nb_tasks;
+  struct ada_task_info *task;
+
+  ada_build_task_list (0);
+  nb_tasks = VEC_length (ada_task_info_s, task_list);
+
+  for (i = 0; i < nb_tasks; i++)
+    {
+      task = VEC_index (ada_task_info_s, task_list, i);
+      if (!ada_task_is_alive (task))
+        continue;
+      iterator (task);
+    }
+}
+
 /* Extract the contents of the value as a string whose length is LENGTH,
    and store the result in DEST.  */
 
This page took 0.028464 seconds and 4 git commands to generate.