* thread.c (do_captured_list_thread_ids): Use ui_out_tuple_begin
authorJim Blandy <jimb@codesourcery.com>
Sat, 12 May 2001 05:04:01 +0000 (05:04 +0000)
committerJim Blandy <jimb@codesourcery.com>
Sat, 12 May 2001 05:04:01 +0000 (05:04 +0000)
and ui_out_tuple_end instead of ui_out_list_begin and
ui_out_list_end.

gdb/ChangeLog
gdb/thread.c

index bbf73007c73c0888b35ead6d086cbef29c7bafe9..55cc0690976853407b84c19e5dd9818cd30baa45 100644 (file)
@@ -1,5 +1,9 @@
 2001-05-11  Jim Blandy  <jimb@redhat.com>
 
+       * thread.c (do_captured_list_thread_ids): Use ui_out_tuple_begin
+       and ui_out_tuple_end instead of ui_out_list_begin and
+       ui_out_list_end.
+
        * Makefile.in (gnu-v2-abi.o): Add $(demangle_h) to list of
        dependencies.  Reorder dependencies to match #includes in file,
        for easier verification.
index e781682ff6e63ee15412a412629b267808cdfb1f..70dcb3705b39ac1a8ed9c848c0bf15e59e7af392 100644 (file)
@@ -259,7 +259,7 @@ do_captured_list_thread_ids (void *arg)
   struct thread_info *tp;
   int num = 0;
 
-  ui_out_list_begin (uiout, "thread-ids");
+  ui_out_tuple_begin (uiout, "thread-ids");
 
   for (tp = thread_list; tp; tp = tp->next)
     {
@@ -267,7 +267,7 @@ do_captured_list_thread_ids (void *arg)
       ui_out_field_int (uiout, "thread-id", tp->num);
     }
 
-  ui_out_list_end (uiout);
+  ui_out_tuple_end (uiout);
   ui_out_field_int (uiout, "number-of-threads", num);
   return GDB_RC_OK;
 }