[Commit] obvious: fix compilation failure for windows-nat.c

Pierre Muller muller@ics.u-strasbg.fr
Tue Feb 24 15:58:00 GMT 2009


As Pedro told me to do so,
I checked the following in under obvious rule:

2009-02-24  Pierre Muller  <muller@ics.u-strasbg.fr>

	Fix windows-nat.c compilation failure.

	* windows-nat.c (windows_thread_alive): Fix forward declaration.
	(get_windows_debug_event): Add ops parameter to call to
windows_resume.


$ cvs diff -up windows-nat.c
Index: windows-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/windows-nat.c,v retrieving revision 1.181 diff -u
-p -r1.181 windows-nat.c
--- windows-nat.c       23 Feb 2009 00:03:50 -0000      1.181
+++ windows-nat.c       24 Feb 2009 14:50:30 -0000
@@ -113,7 +113,7 @@ static int debug_registers_used;
 #define DEBUG_EXCEPT(x)        if (debug_exceptions)   printf_unfiltered x

 static void windows_stop (ptid_t);
-static int windows_thread_alive (ptid_t);
+static int windows_thread_alive (struct target_ops *, ptid_t);
 static void windows_kill_inferior (void);

 static enum target_signal last_sig = TARGET_SIGNAL_0; @@ -1432,7 +1432,7 @@
get_windows_debug_event (struct target_o
   if (!retval || saw_create != 1)
     {
       if (continue_status == -1)
-       windows_resume (minus_one_ptid, 0, 1);
+       windows_resume (ops, minus_one_ptid, 0, 1);
       else
        CHECK (windows_continue (continue_status, -1));
     }



More information about the Gdb-patches mailing list