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 22:14:11 +0400
committerChristopher Faylor <me@cgf.cx>2012-01-26 22:14:11 +0400
commitc9241c2619f8f72915bf001967a99f9f3a55c9fe (patch)
tree2921a9d363d2c8da871a3614bc924014e0ddfbb3
parentbd4174619eaff105643360fe4e6ff928d7ae0ab2 (diff)
* sigproc.cc (child_info::retry_count): Actually that should have been 0.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/sigproc.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index ad9546957..9003621fc 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2012-01-26 Christopher Faylor <me.cygwin2012@cgf.cx>
+ * sigproc.cc (child_info::retry_count): Actually that should have been
+ 0.
+
+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>
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index 6b0f01313..5acc584c6 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -821,7 +821,7 @@ out:
return rc;
}
-int child_info::retry_count = 1;
+int child_info::retry_count = 0;
/* Initialize some of the memory block passed to child processes
by fork/spawn/exec. */