* sigproc.cc (child_info::retry_count): Actually that should have been 0.
This commit is contained in:
parent
bd4174619e
commit
c9241c2619
|
@ -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.
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Reference in New Issue