2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
authorMarc Khouzam <marc.khouzam@ericsson.com>
Tue, 24 Apr 2012 14:26:22 +0000 (14:26 +0000)
committerMarc Khouzam <marc.khouzam@ericsson.com>
Tue, 24 Apr 2012 14:26:22 +0000 (14:26 +0000)
  * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
any thread.

gdb/ChangeLog
gdb/mi/mi-main.c

index 0744c315160b2df3b297c37701e270228a1ed68e..a3a72fbe2e522da690d1f494e3619ccb8e0d069d 100644 (file)
@@ -1,3 +1,8 @@
+2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
+
+       * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
+       any thread.
+
 2012-04-24  Yao Qi  <yao@codesourcery.com>
 
        * breakpoint.c (ep_is_catchpoint): Renamed to ...
index 94e580fe27eb1006bb796b2fc1a7dfd9cb6527cd..90fb62449a43e5db1325d4ebad4f75a85eb644d0 100644 (file)
@@ -2066,7 +2066,7 @@ mi_cmd_execute (struct mi_parse *parse)
         provide --thread if it wishes to operate on a specific
         thread.  */
       if (inf->pid != 0)
-       tp = any_thread_of_process (inf->pid);
+       tp = any_live_thread_of_process (inf->pid);
       switch_to_thread (tp ? tp->ptid : null_ptid);
       set_current_program_space (inf->pspace);
     }