gdb/ChangeLog
[deliverable/binutils-gdb.git] / gdb / inf-loop.c
index 8681e7c3ffccd0b630636b255800916944cdb72a..ea5a2ed0947d18c90ecfbc056e7723aafb68de8a 100644 (file)
@@ -1,5 +1,6 @@
 /* Handling of inferior events for the event loop for GDB, the GNU debugger.
-   Copyright (C) 1999, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2007, 2008, 2009, 2010, 2011
+   Free Software Foundation, Inc.
    Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
 
    This file is part of GDB.
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>. */
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "defs.h"
-#include "inferior.h"          /* For fetch_inferior_event. */
-#include "target.h"             /* For enum inferior_event_type. */
+#include "inferior.h"          /* For fetch_inferior_event.  */
+#include "target.h"             /* For enum inferior_event_type.  */
 #include "event-loop.h"
 #include "event-top.h"
 #include "inf-loop.h"
@@ -36,10 +37,10 @@ inferior_event_handler_wrapper (gdb_client_data client_data)
   inferior_event_handler (INF_QUIT_REQ, client_data);
 }
 
-/* General function to handle events in the inferior. So far it just
+/* General function to handle events in the inferior.  So far it just
    takes care of detecting errors reported by select() or poll(),
    otherwise it assumes that all is OK, and goes on reading data from
-   the fd. This however may not always be what we want to do. */
+   the fd.  This however may not always be what we want to do.  */
 void
 inferior_event_handler (enum inferior_event_type event_type, 
                        gdb_client_data client_data)
@@ -61,7 +62,7 @@ inferior_event_handler (enum inferior_event_type event_type,
       /* Use catch errors for now, until the inner layers of
         fetch_inferior_event (i.e. readchar) can return meaningful
         error status.  If an error occurs while getting an event from
-        the target, just get rid of the target. */
+        the target, just get rid of the target.  */
       if (!catch_errors (fetch_inferior_event_wrapper, 
                         client_data, "", RETURN_MASK_ALL))
        {
@@ -77,7 +78,7 @@ inferior_event_handler (enum inferior_event_type event_type,
 
       if (!non_stop)
        {
-         /* Unregister the inferior from the event loop. This is done
+         /* Unregister the inferior from the event loop.  This is done
             so that when the inferior is not running we don't get
             distracted by spurious inferior output.  */
          if (target_has_execution)
@@ -141,7 +142,7 @@ inferior_event_handler (enum inferior_event_type event_type,
 
     case INF_EXEC_CONTINUE:
       /* Is there anything left to do for the command issued to
-         complete? */
+         complete?  */
 
       if (non_stop)
        do_all_intermediate_continuations_thread (inferior_thread ());
@@ -150,9 +151,9 @@ inferior_event_handler (enum inferior_event_type event_type,
       break;
 
     case INF_QUIT_REQ: 
-      /* FIXME: ezannoni 1999-10-04. This call should really be a
+      /* FIXME: ezannoni 1999-10-04.  This call should really be a
         target vector entry, so that it can be used for any kind of
-        targets. */
+        targets.  */
       async_remote_interrupt_twice (NULL);
       break;
 
This page took 0.025201 seconds and 4 git commands to generate.