]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: new $_inferior_thread_count convenience variable
authorAndrew Burgess <aburgess@redhat.com>
Wed, 2 Nov 2022 13:48:42 +0000 (13:48 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Thu, 17 Nov 2022 14:49:41 +0000 (14:49 +0000)
Add a new convenience variable $_inferior_thread_count that contains
the number of live (non-exited) threads in the current inferior.  This
can be used in command scripts, or breakpoint conditions, etc to
adjust the behaviour for multi-threaded inferiors.

This value is only stable in all-stop mode.  In non-stop mode, where
new threads can be started, and existing threads exit, at any time,
this convenience variable can give a different value each time it is
evaluated.

gdb/NEWS
gdb/doc/gdb.texinfo
gdb/testsuite/gdb.base/default.exp
gdb/testsuite/gdb.multi/tids.exp
gdb/thread.c
gdbsupport/iterator-range.h

index 3f31515297c9178c0ee9a7b8ad4e7d08796882b1..424e5ffd82912968128451f24f6816e67316b7db 100644 (file)
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -78,6 +78,9 @@
   re-enable styling using the new "set style tui-current-position"
   command.
 
+* New convenience variable $_inferior_thread_count contains the number
+  of live threads in the current inferior.
+
 * New commands
 
 maintenance set ignore-prologue-end-flag on|off
index a41f0f7ccefe690647fe901911465a45ef0be14f..bb7b2764408296a1e884701f5739e01abe80b980 100644 (file)
@@ -3642,8 +3642,15 @@ The debugger convenience variables @samp{$_thread} and
 @samp{$_gthread} contain, respectively, the per-inferior thread number
 and the global thread number of the current thread.  You may find this
 useful in writing breakpoint conditional expressions, command scripts,
-and so forth.  @xref{Convenience Vars,, Convenience Variables}, for
-general information on convenience variables.
+and so forth.  The convenience variable @samp{$_inferior_thread_count}
+contains the number of live threads in the current inferior.
+@xref{Convenience Vars,, Convenience Variables}, for general
+information on convenience variables.
+
+When running in non-stop mode (@pxref{Non-Stop Mode}), where new
+threads can be created, and existing threads exit, at any time,
+@samp{$_inferior_thread_count} could return a different value each
+time it is evaluated.
 
 If @value{GDBN} detects the program is multi-threaded, it augments the
 usual message about stopping at a breakpoint with the ID and name of
@@ -12655,6 +12662,9 @@ The thread number of the current thread.  @xref{thread numbers}.
 @item $_gthread
 The global number of the current thread.  @xref{global thread numbers}.
 
+@item $_inferior_thread_count
+The number of live threads in the current inferior.  @xref{Threads}.
+
 @item $_gdb_major
 @itemx $_gdb_minor
 @vindex $_gdb_major@r{, convenience variable}
index 29e76642830df621727765f306702bc4ad1d22eb..f3e4b2867ef2596a43f87dd70ec46a30238c8995 100644 (file)
@@ -584,6 +584,7 @@ set show_conv_list \
        {$_thread = 0} \
        {$_gthread = 0} \
        {$_inferior = 1} \
+       {$_inferior_thread_count = 0} \
        {$_exception = <error: No frame selected>} \
        {$_probe_argc = <error: No frame selected>} \
        {$_probe_arg0 = <error: No frame selected>} \
index fb7c2a29a713418cb2767e10456b8bed9a742219..23668caf18f2a22cb673de65ddb8b0bbe0e34028 100644 (file)
@@ -123,6 +123,8 @@ with_test_prefix "single inferior" {
     info_threads "" "1"
 
     gdb_test "thread" "Current thread is 1 .*"
+
+    gdb_test "print \$_inferior_thread_count" " = 1"
 }
 
 # "info threads" while there are multiple inferiors should show
@@ -140,8 +142,14 @@ with_test_prefix "two inferiors" {
     gdb_test "inferior 2" "Switching to inferior 2 .*" "switch to inferior 2"
     gdb_test "file ${binfile}" ".*" "load file in inferior 2"
 
+    gdb_test "print \$_inferior_thread_count" " = 0" \
+       "no threads before we start the second inferior"
+
     runto_main
 
+    gdb_test "print \$_inferior_thread_count" " = 1" \
+       "no other threads started yet"
+
     # Now that we've added another inferior, thread IDs now show the
     # inferior number.
     info_threads "" "1.1 2.1" \
@@ -153,8 +161,14 @@ with_test_prefix "two inferiors" {
     gdb_breakpoint "thread_function1"
 
     gdb_continue_to_breakpoint "once"
+    gdb_test "print \$_inferior_thread_count" " = 2" \
+       "second thread started in inferior 2"
     gdb_test "inferior 1" "Switching to inferior 1 .*"
+    gdb_test "print \$_inferior_thread_count" " = 1" \
+       "still only one thread in inferior 1"
     gdb_continue_to_breakpoint "twice"
+    gdb_test "print \$_inferior_thread_count" " = 2" \
+       "second thread started in inferior 1"
 
     info_threads "" "1.1 1.2 2.1 2.2" \
        "info threads again"
@@ -187,9 +201,15 @@ with_test_prefix "two inferiors" {
 
        gdb_test "inferior 2" "Switching to inferior 2 .*"
        gdb_continue_to_breakpoint "once"
+       gdb_test "print \$_inferior_thread_count" " = 3" \
+           "third thread started in inferior 2"
 
        gdb_test "inferior 1" "Switching to inferior 1 .*"
+       gdb_test "print \$_inferior_thread_count" " = 2" \
+           "still only two threads in inferior 1"
        gdb_continue_to_breakpoint "twice"
+       gdb_test "print \$_inferior_thread_count" " = 3" \
+           "third thread started in inferior 1"
     }
 
     thr_apply_info_thr "1" \
index 349fc01dd48125565f97671cffe2cc73cf6ff5c2..d176d1d98954a6cfef6d13763250ae01681f1360 100644 (file)
@@ -2123,6 +2123,22 @@ global_thread_id_make_value (struct gdbarch *gdbarch, struct internalvar *var,
   return thread_num_make_value_helper (gdbarch, 1);
 }
 
+/* Return a new value for the number of non-exited threads in the current
+   inferior.  If there are no threads in the current inferior return a
+   value of 0.  */
+
+static struct value *
+inferior_thread_count_make_value (struct gdbarch *gdbarch,
+                                 struct internalvar *var, void *ignore)
+{
+  int int_val = 0;
+
+  if (inferior_ptid != null_ptid)
+    int_val = current_inferior ()->non_exited_threads ().size ();
+
+  return value_from_longest (builtin_type (gdbarch)->builtin_int, int_val);
+}
+
 /* Commands with a prefix of `thread'.  */
 struct cmd_list_element *thread_cmd_list = NULL;
 
@@ -2142,6 +2158,14 @@ static const struct internalvar_funcs gthread_funcs =
   NULL,
 };
 
+/* Implementation of `_inferior_thread_count` convenience variable.  */
+
+static const struct internalvar_funcs inferior_thread_count_funcs =
+{
+  inferior_thread_count_make_value,
+  NULL,
+};
+
 void _initialize_thread ();
 void
 _initialize_thread ()
@@ -2258,4 +2282,6 @@ When on messages about thread creation and deletion are printed."),
 
   create_internalvar_type_lazy ("_thread", &thread_funcs, NULL);
   create_internalvar_type_lazy ("_gthread", &gthread_funcs, NULL);
+  create_internalvar_type_lazy ("_inferior_thread_count",
+                               &inferior_thread_count_funcs, NULL);
 }
index d35b03a339263d4ae64037939f73d0c1614cf629..c99bdc8de070672dff164b286ddc72b077c9d91f 100644 (file)
@@ -53,6 +53,10 @@ struct iterator_range
   IteratorType end () const
   { return m_end; }
 
+  /* The number of items in this iterator_range.  */
+  std::size_t size () const
+  { return std::distance (m_begin, m_end); }
+
 private:
   IteratorType m_begin, m_end;
 };