Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-11-16 08:21:03 +0300
committerChristopher Faylor <me@cgf.cx>2000-11-16 08:21:03 +0300
commit0dc9dc8b3aa386fb0c1f2c6fa01692cdb0368ab0 (patch)
tree2dd3aba9f377a8167c78537889b08fae3beb62d2 /winsup
parent0d675c5d7f2493995ca7831c215b215d4b9bbe3a (diff)
Update ChangeLog.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog7
-rw-r--r--winsup/cygwin/fork.cc2
2 files changed, 3 insertions, 6 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index c06d5a106..6c292159d 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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>
diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc
index 30478f2c7..7e8ad534f 100644
--- a/winsup/cygwin/fork.cc
+++ b/winsup/cygwin/fork.cc
@@ -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])))