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-03-21 03:13:40 +0400
committerChristopher Faylor <me@cgf.cx>2012-03-21 03:13:40 +0400
commit30fa1549395ca75b66472aa2039af0ff772b1c60 (patch)
treef3adcd570a2407f2b8567d874f9ab057ed8c44d2 /winsup/cygwin/fork.cc
parentc1c62a13681b8eb7e1d43785da464ec4954e0160 (diff)
* dtable.cc (set_std_handle): Call SetStdHandle with NULL if fd is closed.
(dtable::release): "Close" standard handle if appropriate. * dcrt0.cc (dll_crt0_0): Fix minor switch formatting problem. * fork.cc (frok::parent): Make minor comment indentation change.
Diffstat (limited to 'winsup/cygwin/fork.cc')
-rw-r--r--winsup/cygwin/fork.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc
index d014cc992..2cd4c2f0c 100644
--- a/winsup/cygwin/fork.cc
+++ b/winsup/cygwin/fork.cc
@@ -354,14 +354,14 @@ frok::parent (volatile char * volatile stack_here)
while (1)
{
hchild = NULL;
- rc = CreateProcessW (myself->progname, /* image to run */
- myself->progname, /* what we send in arg0 */
+ rc = CreateProcessW (myself->progname, /* image to run */
+ myself->progname, /* what we send in arg0 */
&sec_none_nih,
&sec_none_nih,
- TRUE, /* inherit handles from parent */
+ TRUE, /* inherit handles from parent */
c_flags,
- NULL, /* environment filled in later */
- 0, /* use current drive/directory */
+ NULL, /* environment filled in later */
+ 0, /* use current drive/directory */
&si,
&pi);