* sigproc.cc (child_info::retry_count): Default to 1.

This commit is contained in:
Christopher Faylor 2012-01-26 16:35:34 +00:00
parent 2d5a2c1b35
commit bd4174619e
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

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