OSDN Git Service

* inferior.c (remove_inferior_command): Don't remove an active inferior.
authormarckhouzam <marckhouzam>
Wed, 22 Dec 2010 18:30:16 +0000 (18:30 +0000)
committermarckhouzam <marckhouzam>
Wed, 22 Dec 2010 18:30:16 +0000 (18:30 +0000)
* mi/mi-main.c (mi_cmd_remove_inferior): Ditto.

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

index 1f473ae..bf9f525 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-22  Marc Khouzam  <marc.khouzam@ericsson.com>
+
+       * inferior.c (remove_inferior_command): Don't remove an active inferior.
+       * mi/mi-main.c (mi_cmd_remove_inferior): Ditto.
+
 2010-12-21  Tom Tromey  <tromey@redhat.com>
 
        * thread.c (print_thread_info): Make a ui-out table in CLI mode.
index cad7e55..3493c16 100644 (file)
@@ -754,6 +754,9 @@ remove_inferior_command (char *args, int from_tty)
 
   if (inf == current_inferior ())
     error (_("Can not remove current symbol inferior."));
+    
+  if (inf->pid != 0)
+    error (_("Can not remove an active inferior."));
 
   delete_inferior_1 (inf, 1);
 }
index b03a8b9..6f66e89 100644 (file)
@@ -1772,6 +1772,9 @@ mi_cmd_remove_inferior (char *command, char **argv, int argc)
   if (!inf)
     error ("the specified thread group does not exist");
 
+  if (inf->pid != 0)
+    error ("can not remove an active inferior");
+
   if (inf == current_inferior ())
     {
       struct thread_info *tp = 0;