gdb: add some extra debug information to attach_command
authorAndrew Burgess <aburgess@redhat.com>
Tue, 11 Jan 2022 17:31:16 +0000 (17:31 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Thu, 13 Jan 2022 10:13:16 +0000 (10:13 +0000)
While working on another patch I wanted to add some extra debug
information to the attach_command function.  This required me to add a
new function to convert the thread_info::state variable to a string.

The new debug might be useful to others, and the state to string
function might be useful in other locations, so I thought I'd merge
it.

gdb/gdbthread.h
gdb/infcmd.c
gdb/thread.c

index 5350a42f1bb6767861924750265bb6709bdd0b36..9921dae7a712bc807540118e7f42f9a5e478ab67 100644 (file)
@@ -1003,4 +1003,8 @@ extern void thread_try_catch_cmd (thread_info *thr,
                                  const char *cmd, int from_tty,
                                  const qcs_flags &flags);
 
+/* Return a string representation of STATE.  */
+
+extern const char *thread_state_string (enum thread_state state);
+
 #endif /* GDBTHREAD_H */
index 8bf58018bdda4e83edf5636afb684a428c18e691..9f4ed8bff1383476e0dfdb65d65064de8de769eb 100644 (file)
@@ -2541,6 +2541,18 @@ attach_command (const char *args, int from_tty)
      shouldn't refer to attach_target again.  */
   attach_target = NULL;
 
+  if (debug_infrun)
+    {
+      infrun_debug_printf ("immediately after attach:");
+      for (thread_info *thread : inferior->non_exited_threads ())
+       infrun_debug_printf ("  thread %s, executing = %d, resumed = %d, "
+                            "state = %s",
+                            thread->ptid.to_string ().c_str (),
+                            thread->executing (),
+                            thread->resumed (),
+                            thread_state_string (thread->state));
+    }
+
   /* Set up the "saved terminal modes" of the inferior
      based on what modes we are starting it with.  */
   target_terminal::init ();
index 8a7d142bab56e7d01257c452dc57c6804bb0ea64..c43f6613145378c00df952f56e67b8762e3382fc 100644 (file)
@@ -2050,6 +2050,26 @@ thread_name (thread_info *thread)
   return target_thread_name (thread);
 }
 
+/* See gdbthread.h.  */
+
+const char *
+thread_state_string (enum thread_state state)
+{
+  switch (state)
+    {
+    case THREAD_STOPPED:
+      return "STOPPED";
+
+    case THREAD_RUNNING:
+      return "RUNNING";
+
+    case THREAD_EXITED:
+      return "EXITED";
+    }
+
+  gdb_assert_not_reached ("unknown thread state");
+}
+
 /* Return a new value for the selected thread's id.  Return a value of
    0 if no thread is selected.  If GLOBAL is true, return the thread's
    global number.  Otherwise return the per-inferior number.  */