gdbtypes.resolve_dynamic_range: Add function description.
[deliverable/binutils-gdb.git] / gdb / inf-loop.c
index 8e49e91957dddf0bc9c02bded68b352c59f3ffd8..247e9d68706a7525692e0d2648d0cc83b14f4328 100644 (file)
@@ -1,6 +1,5 @@
 /* Handling of inferior events for the event loop for GDB, the GNU debugger.
-   Copyright (C) 1999, 2007, 2008, 2009, 2010, 2011
-   Free Software Foundation, Inc.
+   Copyright (C) 1999-2014 Free Software Foundation, Inc.
    Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
 
    This file is part of GDB.
@@ -19,7 +18,8 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "defs.h"
-#include "inferior.h"          /* For fetch_inferior_event.  */
+#include "inferior.h"
+#include "infrun.h"
 #include "target.h"             /* For enum inferior_event_type.  */
 #include "event-loop.h"
 #include "event-top.h"
@@ -30,6 +30,8 @@
 #include "gdbthread.h"
 #include "continuations.h"
 #include "interps.h"
+#include "top.h"
+#include "observer.h"
 
 static int fetch_inferior_event_wrapper (gdb_client_data client_data);
 
@@ -57,7 +59,7 @@ inferior_event_handler (enum inferior_event_type event_type,
          do_all_intermediate_continuations (1);
          do_all_continuations (1);
          async_enable_stdin ();
-         display_gdb_prompt (0);
+         observer_notify_command_error ();
        }
       break;
 
@@ -107,10 +109,7 @@ inferior_event_handler (enum inferior_event_type event_type,
        {
          volatile struct gdb_exception e;
 
-         if (info_verbose
-             && current_language != expected_language
-             && language_mode == language_mode_auto)
-           language_info (1);  /* Print what changed.  */
+         check_frame_language_change ();
 
          /* Don't propagate breakpoint commands errors.  Either we're
             stopping or some command resumes the inferior.  The user will
This page took 0.028878 seconds and 4 git commands to generate.