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
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-01-26 20:35:34 +0400
committerChristopher Faylor <me@cgf.cx>2012-01-26 20:35:34 +0400
commitbd4174619eaff105643360fe4e6ff928d7ae0ab2 (patch)
treee81a0caf5e5bbf0e3128356a0b682b79218a0090 /winsup/cygwin
parent2d5a2c1b356e85ed6847fdba1e7e16cf69e0714b (diff)
* sigproc.cc (child_info::retry_count): Default to 1.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/sigproc.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index f589fb78a..ad9546957 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2012-01-26 Christopher Faylor <me.cygwin2012@cgf.cx>
+
+ * sigproc.cc (child_info::retry_count): Default to 1.
+
2012-01-23 Corinna Vinschen <corinna@vinschen.de>
* syscalls.cc (gethostid): Simplify. Just fetch MachineGuid and
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index 01278ef80..6b0f01313 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -821,7 +821,7 @@ out:
return rc;
}
-int child_info::retry_count = 10;
+int child_info::retry_count = 1;
/* Initialize some of the memory block passed to child processes
by fork/spawn/exec. */