]> sourceware.org Git - newlib-cygwin.git/commitdiff
revert erroneous checkin
authorChristopher Faylor <me@cgf.cx>
Tue, 11 Oct 2005 18:39:02 +0000 (18:39 +0000)
committerChristopher Faylor <me@cgf.cx>
Tue, 11 Oct 2005 18:39:02 +0000 (18:39 +0000)
winsup/testsuite/winsup.api/mmaptest03.c
winsup/utils/strace.cc

index b3141d9989b12d2dd40bfbfbd6722c7dc94e2fbb..8046f0bf84b74f4d7df52ac9bbe29cd5f1db7906 100644 (file)
@@ -103,7 +103,6 @@ main(int argc, char **argv)
       what = "child";
     }
 
-  if (argc > 1) sleep (10);
   if (pid == -1)
     perror_exit ("fork failed");
 
index f601c4418428aab594a3d792f11f3bedef4ce469..1bd54ced0d6adec35704c8b34777493da765e17e 100644 (file)
@@ -128,7 +128,7 @@ get_child (DWORD id)
 }
 
 static void
-remove_child (FILE *ofile, DWORD id)
+remove_child (DWORD id)
 {
   child_list *c;
   if (id == lastid)
@@ -138,9 +138,6 @@ remove_child (FILE *ofile, DWORD id)
       {
        child_list *c1 = c->next;
        c->next = c1->next;
-       DWORD n = 0xdeadbeef;
-       GetExitCodeProcess (c1->hproc, &n);
-       fprintf (ofile, "process %u exited with status %p\n", id, n);
        free (c1);
        return;
       }
@@ -630,7 +627,7 @@ proc_child (unsigned mask, FILE *ofile, pid_t pid)
          break;
 
        case EXIT_PROCESS_DEBUG_EVENT:
-         remove_child (ofile, ev.dwProcessId);
+         remove_child (ev.dwProcessId);
          break;
        case EXCEPTION_DEBUG_EVENT:
          if (ev.u.Exception.ExceptionRecord.ExceptionCode !=
This page took 0.03962 seconds and 5 git commands to generate.