* mi/mi-main.c (mi_cmd_remove_inferior): Ditto.
+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.
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);
}
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;