[binutils-gdb] gdb: notify of inferior switch when needed from 'thread' command

Andrew Burgess via Gdb-cvs <[email protected]>
Newsgroups gmane.comp.gdb.cvs
Message-ID <[email protected]>
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=430f15b5be082d678822120a63201c30727c3e23

commit 430f15b5be082d678822120a63201c30727c3e23
Author: Andrew Burgess <[email protected]>
Date:   Tue Sep 30 13:14:11 2025 +0100

    gdb: notify of inferior switch when needed from 'thread' command
    
    While working on the commit:
    
      commit 9959019545d8d6d71d927f20f088efba944b1e9c
      Date:   Sun Sep 28 16:16:53 2025 +0100
    
          gdb: fix for 'set suppress-cli-notifications on' missed case
    
    I spotted this message in the gdb.mi/user-selected-context-sync.exp
    test script:
    
      # Idea for the future: selecting a thread in a different inferior.  For now,
      # GDB doesn't show an inferior switch, but if it did, it would be a nice
      # place to test it.
    
    What this message is talking about is this behaviour:
    
      (gdb) info threads
        Id   Target Id                              Frame
        1.1  Thread 0xf7dbc700 (LWP 818430) "thr" 0xf7eb2888 in clone () from /lib/libc.so.6
        1.2  Thread 0xf7dbbb40 (LWP 818433) "thr" 0xf7fd0579 in __kernel_vsyscall ()
        1.3  Thread 0xf73ffb40 (LWP 818434) "thr" breakpt () at thr.c:19
        2.1  Thread 0xf7dbc700 (LWP 818456) "thr" 0xf7eb2888 in clone () from /lib/libc.so.6
        2.2  Thread 0xf7dbbb40 (LWP 818457) "thr" breakpt () at thr.c:19
      * 2.3  Thread 0xf73ffb40 (LWP 818458) "thr" breakpt () at thr.c:19
      (gdb) inferior 1
      [Switching to inferior 1 [process 818430] (/home/andrew/tmp/thr)]
      [Switching to thread 1.1 (Thread 0xf7dbc700 (LWP 818430))]
      #0  0xf7eb2888 in clone () from /lib/libc.so.6
      (gdb) thread 2.2
      [Switching to thread 2.2 (Thread 0xf7dbbb40 (LWP 818457))]
      #0  breakpt () at thr.c:19
      19      while (stop)
      (gdb)
    
    Notice that when we switch from thread 2.3 to 1.1 using the 'inferior
    1' command, GDB tells us that the inferior has changed, and that the
    thread has changed (and also that the frame has changed).
    
    But, when we switch from 1.1 to 2.2 using the 'thread 2.2' command, we
    are only told about the thread change.
    
    The 'Switching to inferior ...' line includes some useful information,
    the process PID and the executable name, and I think it is a shame
    that these are not presented when using the 'thread' command to switch
    inferior.
    
    So, this commit addresses this issue.
    
    A question that came up during review, and which I'm clarifying here:
    this change only affects the output of GDB when the thread command is
    also used to switch inferiors.  I am (in effect) arguing that the
    command 'thread 2.2' should be treated as a shorthand for 'inferior 2;
    thread 2', and should display all of the associated output.  If the
    user is only switching threads within a single inferior then it is not
    necessary to re-display the inferior information.
    
    I acknowledge that this does mean the output of the 'thread' command
    will now be different depending on whether the user changes inferior
    or not.  However, I think this is better than the alternative, having
    the 'thread' command always re-print the inferior information.  I
    think this would introduce excess noise that is not useful.
    
    There are changes in basically two areas.  The easy part is in
    thread_command (thread.c).  Here we spot when the inferior has changed
    as a result of the 'thread' command, and include
    USER_SELECTED_INFERIOR in the set of state passed to the
    notify_user_selected_context_changed function.
    
    The change in mi/mi-main.c is a little more involved.  In the
    mi_cmd_execute function we use an instance of user_selected_context to
    spot if any inferior state (frame, thread, or inferior) changes after
    an MI command, this is then used to decide if there should be a call
    to interps_notify_user_selected_context_changed.
    
    First, by calling interps_notify_user_selected_context_changed
    directly, instead of notify_user_selected_context_changed, we fail to
    trigger the Python selected_context event, which feels like a
    mistake.  If the context is changed via an MI command, I think we
    should still trigger the Python event.  So the first thing I did was
    change the interps_notify_user_selected_context_changed call into a
    call to notify_user_selected_context_changed.  I updated the
    gdb.python/py-selected-context.exp test to cover this case.
    
    After that, in mi_cmd_execute, notify_user_selected_context_changed is
    always passed 'USER_SELECTED_THREAD | USER_SELECTED_FRAME'.  This
    makes sense, the MI doesn't allow "switching inferiors" as a command,
    instead, an MI frontend must switch threads, and the inferior is
    switched as a consequence.  But this does mean that if a user has a
    CLI and MI interpreter running, and the MI switches threads, the CLI
    will only receive the thread switch style notifications, that is,
    there will be no "Switching to inferior ..." line.
    
    What I've done is rename user_selected_context::has_changed to
    user_selected_context::what_changed, this function is now responsible
    for returning the set of USER_SELECTED_* flags that indicate what
    changed.
    
    If anything has changed then we always return USER_SELECTED_THREAD |
    USER_SELECTED_FRAME as a minimum.  This retains the existing
    behaviour, but is possibly more aggressive than we need to be; the
    -stack-select-frame command can only change the frame, so maybe in
    this case we should only return USER_SELECTED_FRAME?  I've left that
    for the future though.
    
    However, the important change is that in ::what_changed, I now spot
    when the inferior has changed and include USER_SELECTED_INFERIOR in
    the set of flags that are returned.
    
    In mi_cmd_execute we now call the new what_changed function, and use
    the set of flags returned when calling
    notify_user_selected_context_changed.  This means that the CLI will
    now receive inferior changed notifications when appropriate.
    
    The gdb.mi/user-selected-context-sync.exp script has been updated,
    replacing the comment I quoted above with an actual test that the
    inferior change is announced correctly.
    
    Reviewed-By: Guinevere Larsen <[email protected]>
    Reviewed-By: Tankut Baris Aktemur <[email protected]>

Diff:
---
 gdb/mi/mi-main.c                                   | 49 ++++++++++++++-----
 .../gdb.mi/user-selected-context-sync.exp          | 55 ++++++++++++++++++----
 gdb/testsuite/gdb.python/py-selected-context.exp   | 19 ++++++++
 gdb/thread.c                                       | 13 ++++-
 4 files changed, 114 insertions(+), 22 deletions(-)

diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c
index 7e448947a2f..4dd4a7f9a6c 100644
--- a/gdb/mi/mi-main.c
+++ b/gdb/mi/mi-main.c
@@ -536,6 +536,11 @@ mi_cmd_thread_select (const char *command, const char *const *argv, int argc)
 
   thread_select (argv[0], thr);
 
+  /* We don't call print_selected_inferior here as this never prints
+     anything when the output is MI like (as it is now).  MI consumers are
+     expected to derive the inferior change from the global thread-id
+     included in the print_selected_thread_frame output.  */
+
   print_selected_thread_frame (current_uiout,
 			       USER_SELECTED_THREAD | USER_SELECTED_FRAME);
 }
@@ -1965,14 +1970,33 @@ struct user_selected_context
     save_selected_frame (&m_previous_frame_id, &m_previous_frame_level);
   }
 
-  /* Return true if the user selected context has changed since this object
-     was created.  */
-  bool has_changed () const
+  /* Return a set of flags indicating which parts of the user selected
+     context have changed since this object was created, or 0 (the empty
+     set of flags) if nothing has changed.  */
+  user_selected_what what_changed () const
   {
+    /* If anything changed then we report both the thread and frame at a
+       minimum.  We optionally add the inferior if we know that it
+       changed.
+
+       This means that for pure frame changes, e.g. -stack-select-frame, we
+       still report both a thread and a frame, which isn't ideal, but
+       there's also the case where -thread-select is used to re-select the
+       current thread, in this case we'd still like to see the thread
+       reported, at least, that's what we have historically done.  */
+    user_selected_what state
+      = USER_SELECTED_THREAD | USER_SELECTED_FRAME;
+
     /* Did the selected thread change?  */
     if (m_previous_ptid != null_ptid && inferior_ptid != null_ptid
 	&& m_previous_ptid != inferior_ptid)
-      return true;
+      {
+	/* Did the inferior change too?  */
+	if (m_previous_ptid.pid () != inferior_ptid.pid ())
+	  state |= USER_SELECTED_INFERIOR;
+
+	return state;
+      }
 
     /* Grab details of the currently selected frame, for comparison.  */
     frame_id current_frame_id;
@@ -1981,7 +2005,7 @@ struct user_selected_context
 
     /* Did the selected frame level change?  */
     if (current_frame_level != m_previous_frame_level)
-      return true;
+      return state;
 
     /* Did the selected frame id change?  If the innermost frame is
        selected then the level will be -1, and the frame-id will be
@@ -1990,10 +2014,10 @@ struct user_selected_context
        other than the innermost frame selected.  */
     if (current_frame_level != -1
 	&& current_frame_id != m_previous_frame_id)
-      return true;
+      return state;
 
     /* Nothing changed!  */
-    return false;
+    return 0;
   }
 private:
   /* The previously selected thread.  This might be null_ptid if there was
@@ -2097,10 +2121,13 @@ mi_cmd_execute (struct mi_parse *parse)
 
   parse->cmd->invoke (parse);
 
-  if (!parse->cmd->preserve_user_selected_context ()
-      && current_user_selected_context.has_changed ())
-    interps_notify_user_selected_context_changed
-      (USER_SELECTED_THREAD | USER_SELECTED_FRAME);
+  if (!parse->cmd->preserve_user_selected_context ())
+    {
+      user_selected_what what
+	= current_user_selected_context.what_changed ();
+      if (what != 0)
+	notify_user_selected_context_changed (what);
+    }
 }
 
 /* See mi-main.h.  */
diff --git a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
index 844206f7511..d3abbcb4145 100644
--- a/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
+++ b/gdb/testsuite/gdb.mi/user-selected-context-sync.exp
@@ -698,9 +698,21 @@ proc_with_prefix test_cli_thread { mode } {
 	}
     }
 
-    # Idea for the future: selecting a thread in a different inferior.  For now,
-    # GDB doesn't show an inferior switch, but if it did, it would be a nice
-    # place to test it.
+    with_test_prefix "thread 2.2" {
+	# Select a thread in a different inferior.  This should trigger an
+	# 'inferior changed' and 'thread changed' notification on the CLI,
+	# and a single MI async notification.
+	set mi_re [make_mi_re $mode 5 0 event]
+	set cli_re [make_cli_re $mode 2 2.2 0]
+
+	with_spawn_id $gdb_main_spawn_id {
+	    gdb_test "thread 2.2" $cli_re "select thread"
+	}
+
+	with_spawn_id $mi_spawn_id {
+	    match_re_or_ensure_no_output $mi_re "select thread, event on MI"
+	}
+    }
 }
 
 # Test frame selection from CLI.
@@ -995,9 +1007,21 @@ proc_with_prefix test_mi_thread_select { mode } {
 	}
     }
 
-    # Idea for the future: selecting a thread in a different inferior.  For now,
-    # GDB doesn't show an inferior switch, but if it did, it would be a nice
-    # place to test it.
+    with_test_prefix "thread 2.2" {
+	# Select a thread in a different inferior.  This should trigger an
+	# 'inferior changed' and 'thread changed' notification on the CLI,
+	# and a single MI async notification.
+	set mi_re [make_mi_re $mode 5 0 response]
+	set cli_re [make_cli_re $mode 2 2.2 0]
+
+	with_spawn_id $mi_spawn_id {
+	    mi_gdb_test "-thread-select 5" $mi_re "-thread-select"
+	}
+
+	with_spawn_id $gdb_main_spawn_id {
+	    match_re_or_ensure_no_output "$cli_re\r\n" "-thread-select, event on CLI"
+	}
+    }
 }
 
 proc_with_prefix test_mi_stack_select_frame { mode } {
@@ -1290,9 +1314,22 @@ proc_with_prefix test_cli_in_mi_thread { mode cli_in_mi_mode } {
 	}
     }
 
-    # Idea for the future: selecting a thread in a different inferior.  For now,
-    # GDB doesn't show an inferior switch, but if it did, it would be a nice
-    # place to test it.
+    with_test_prefix "thread 2.2" {
+	# Select a thread in a different inferior.  This should trigger an
+	# 'inferior changed' and 'thread changed' notification on the CLI,
+	# and a single MI async notification.
+	set command [make_cli_in_mi_command $cli_in_mi_mode "thread 2.2"]
+	set mi_re [make_cli_in_mi_re $command $cli_in_mi_mode $mode 1 2 2.2 5 0]
+	set cli_re [make_cli_re $mode 2 2.2 0]
+
+	with_spawn_id $mi_spawn_id {
+	    mi_gdb_test $command $mi_re "select thread"
+	}
+
+	with_spawn_id $gdb_main_spawn_id {
+	    match_re_or_ensure_no_output "$cli_re\r\n" "select thread, event on CLI"
+	}
+    }
 }
 
 # Test selecting the frame using a CLI command in the MI channel.
diff --git a/gdb/testsuite/gdb.python/py-selected-context.exp b/gdb/testsuite/gdb.python/py-selected-context.exp
index 030543466d2..28b9b456003 100644
--- a/gdb/testsuite/gdb.python/py-selected-context.exp
+++ b/gdb/testsuite/gdb.python/py-selected-context.exp
@@ -129,3 +129,22 @@ gdb_test "down" [event_regexp 1 1.2 #0] \
     "move down a frame, event handler triggers"
 gdb_test "frame 1" [event_regexp 1 1.2 #1] \
     "select a frame, event handler triggers"
+
+# Check that switching threads via MI also triggers the Python
+# selected_context event.  Grab the regexp we expect for the CLI, pull
+# it apart, and wrap each line with the usual ~"...\n" wrapper we see
+# with MI.  Then add the MI '^done,....' line, and make this into
+# the expected output regexp.
+set cli_pattern [event_regexp 1 1.1 #0]
+set cli_pattern [string map {\r\n \n} $cli_pattern]
+set cli_pattern [split $cli_pattern \n]
+set mi_pattern {}
+foreach line $cli_pattern {
+    lappend mi_pattern "~\"$line\\\\n\""
+}
+lappend mi_pattern "\\^done,new-thread-id=\"1\",\[^\r\n\]+"
+set pattern [multi_line {*}$mi_pattern]
+
+# Switch threads using the MI.  Python event should trigger.
+gdb_test "interpreter-exec mi \"-thread-select 1\"" $pattern \
+    "mi thread switch triggers Python event"
diff --git a/gdb/thread.c b/gdb/thread.c
index 74124596b28..c156f16377b 100644
--- a/gdb/thread.c
+++ b/gdb/thread.c
@@ -2009,10 +2009,19 @@ thread_command (const char *tidstr, int from_tty)
     }
   else
     {
+      inferior *previous_inferior = current_inferior ();
+
       thread_select (tidstr, parse_thread_id (tidstr, NULL));
 
-      notify_user_selected_context_changed
-	(USER_SELECTED_THREAD | USER_SELECTED_FRAME);
+      user_selected_what selection = (USER_SELECTED_THREAD
+				      | USER_SELECTED_FRAME);
+
+      /* If the inferior changed as a consequence of the thread change,
+	 then let the user know.  */
+      if (previous_inferior != current_inferior ())
+	selection |= USER_SELECTED_INFERIOR;
+
+      notify_user_selected_context_changed (selection);
     }
 }
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.