diff options
author | Christopher Faylor <me@cgf.cx> | 2004-10-28 17:34:29 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-10-28 17:34:29 +0000 |
commit | 22cf17b31fb65839f1a99976988a06ed025e8da5 (patch) | |
tree | d735d99b2c81247885cf2b6f178cd8e8340253d2 /winsup | |
parent | 334ba104fe68b9f519ab78b08b18a49ac0327c44 (diff) | |
download | newlib-22cf17b31fb65839f1a99976988a06ed025e8da5.zip newlib-22cf17b31fb65839f1a99976988a06ed025e8da5.tar.gz newlib-22cf17b31fb65839f1a99976988a06ed025e8da5.tar.bz2 |
* fork.cc (NPIDS_HELD): Reduce to former number now that bash problem has been
identified.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/fork.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index dfa658d..732483b 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2004-10-28 Christopher Faylor <cgf@timesys.com> + + * fork.cc (NPIDS_HELD): Reduce to former number now that bash problem + has been identified. + 2004-10-28 Pierre Humblet <pierre.humblet@ieee.org> * path.cc (mount_info::from_registry): Deimpersonate while diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc index 08edff2..187fcdc 100644 --- a/winsup/cygwin/fork.cc +++ b/winsup/cygwin/fork.cc @@ -31,7 +31,7 @@ details. */ #include "cygmalloc.h" #include "cygthread.h" -#define NPIDS_HELD 8 +#define NPIDS_HELD 4 /* Timeout to wait for child to start, parent to init child, etc. */ /* FIXME: Once things stabilize, bump up to a few minutes. */ |