OSDN Git Service

Update ChangeLog.
authorcgf <cgf>
Thu, 16 Nov 2000 05:21:03 +0000 (05:21 +0000)
committercgf <cgf>
Thu, 16 Nov 2000 05:21:03 +0000 (05:21 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/fork.cc

index c06d5a1..6c29215 100644 (file)
@@ -1,8 +1,4 @@
-Thu Nov 16 00:15:59 2000  Christopher Faylor <cgf@cygnus.com>
-
-       * sigproc.cc (wait_sig): Remove unneeded for loop iteration.
-
-Wed Nov 15 21:02:56 2000  Christopher Faylor <cgf@cygnus.com>
+Thu Nov 16 00:18:15 2000  Christopher Faylor <cgf@cygnus.com>
 
        * exceptions.cc (interrupt_setup): Don't set signal mask here or races
        occur with main thread.  Set it in sigdelayed instead.
@@ -12,6 +8,7 @@ Wed Nov 15 21:02:56 2000  Christopher Faylor <cgf@cygnus.com>
        (signal_dispatch): Add newmask.
        * sigproc.cc (wait_sig): Eliminate ill-considered attempt to halt
        looping signal processors.
+       * perthread.h (signal_dispatch): Add newmask field.
 
 Wed Nov 15 22:08:00 2000  Corinna Vinschen <corinna@vinschen.de>
 
index 30478f2..7e8ad53 100644 (file)
@@ -314,7 +314,7 @@ fork_child (HANDLE& hParent, dll *&first_dll, bool& load_dlls)
 static void
 slow_pid_reuse (HANDLE h)
 {
-  static NO_COPY HANDLE last_fork_procs[128] = {0};
+  static NO_COPY HANDLE last_fork_procs[8] = {0};
   static NO_COPY unsigned nfork_procs = 0;
 
   if (nfork_procs >= (sizeof (last_fork_procs) / sizeof (last_fork_procs [0])))