Non-stop mode support.
[deliverable/binutils-gdb.git] / gdb / gdbserver / win32-low.c
index 2fed73cba48447ef0c9be7bc49c91fc44c0a7e23..1d7c2034683e2380b158b6b60838a0cc2933ad4c 100644 (file)
@@ -685,7 +685,7 @@ win32_detach (void)
   {
     struct thread_resume resume;
     resume.thread = -1;
-    resume.step = 0;
+    resume.kind = resume_continue;
     resume.sig = 0;
     win32_resume (&resume, 1);
   }
@@ -754,7 +754,7 @@ win32_resume (struct thread_resume *resume_info, size_t n)
   if (resume_info[0].thread != -1)
     {
       sig = resume_info[0].sig;
-      step = resume_info[0].step;
+      step = resume_info[0].kind == resume_step;
     }
   else
     {
@@ -1476,7 +1476,7 @@ get_child_debug_event (struct target_waitstatus *ourstatus)
    STATUS will be filled in with a response code to send to GDB.
    Returns the signal which caused the process to stop. */
 static unsigned long
-win32_wait (struct target_waitstatus *ourstatus)
+win32_wait (struct target_waitstatus *ourstatus, int options)
 {
   while (1)
     {
This page took 0.02447 seconds and 4 git commands to generate.