Skip to content

Commit 1d5e891

Browse files
thomasjmtomjaguarpaw
authored andcommitted
Remove extraneous comment
1 parent fbbe607 commit 1d5e891

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

System/Process/Common.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ data CreateProcess = CreateProcess{
9797
std_in :: StdStream, -- ^ How to determine stdin
9898
std_out :: StdStream, -- ^ How to determine stdout
9999
std_err :: StdStream, -- ^ How to determine stderr
100-
close_fds :: Bool, -- ^ Close all file descriptors except stdin, stdout and stderr in the new process (on Windows, only works if std_in, std_out, and std_err are all Inherit). This implementation will call close on every fd from 3 to the maximum of open files, which can be slow for high maximum of open files. XXX verify what happens with fds in nodejs child processes
100+
-- XXX verify what happens with fds in nodejs child processes
101+
close_fds :: Bool, -- ^ Close all file descriptors except stdin, stdout and stderr in the new process (on Windows, only works if std_in, std_out, and std_err are all Inherit). This implementation will call close on every fd from 3 to the maximum of open files, which can be slow for high maximum of open files.
101102
create_group :: Bool, -- ^ Create a new process group. On JavaScript this also creates a new session.
102103
delegate_ctlc:: Bool, -- ^ Delegate control-C handling. Use this for interactive console processes to let them handle control-C themselves (see below for details).
103104
--

0 commit comments

Comments
 (0)