* sigproc.cc (child_info::retry_count): Actually that should have been 0.

This commit is contained in:
Christopher Faylor 2012-01-26 18:14:11 +00:00
parent bd4174619e
commit c9241c2619
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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. */