gdb/
authorYao Qi <yao@codesourcery.com>
Thu, 12 Apr 2012 00:56:05 +0000 (00:56 +0000)
committerYao Qi <yao@codesourcery.com>
Thu, 12 Apr 2012 00:56:05 +0000 (00:56 +0000)
* remote.c (async_remote_interrupt): Correct function name in
debug message.
(async_remote_interrupt_twice): Ditto.

gdb/ChangeLog
gdb/remote.c

index c511d0649e0c57692e2c94b08450f7e7e98bf6b1..12969e868166df5709050243fc22472ad0d60a6a 100644 (file)
@@ -1,3 +1,9 @@
+2012-04-12  Yao Qi  <yao@codesourcery.com>
+
+       * remote.c (async_remote_interrupt): Correct function name in
+       debug message.
+       (async_remote_interrupt_twice): Ditto.
+
 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
 
        * source.c (find_and_open_source): Consistently pass resulting
index caf6116837f12c78909d6251cae803044085f16e..68864d17e90551f59aab0a3c19863c82c6b1aec5 100644 (file)
@@ -4834,7 +4834,7 @@ static void
 async_remote_interrupt (gdb_client_data arg)
 {
   if (remote_debug)
-    fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
+    fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n");
 
   target_stop (inferior_ptid);
 }
@@ -4845,7 +4845,7 @@ void
 async_remote_interrupt_twice (gdb_client_data arg)
 {
   if (remote_debug)
-    fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
+    fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n");
 
   interrupt_query ();
 }
This page took 0.046283 seconds and 4 git commands to generate.