We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb23962 commit a5b6150Copy full SHA for a5b6150
src/process.mli
@@ -106,7 +106,11 @@ val spawn :
106
[~term_signal] is set by {!Luv.Process.kill}, i.e. it is emulated by libuv.
107
The operating system separately reports [~exit_status], so it is always
108
valid. If there is an error retrieving [~exit_status] from the OS, it is set
109
- to a negative value. *)
+ to a negative value.
110
+
111
+ Redirections for STDIN, STDOUT, STDERR that are not specified are set by Luv
112
+ to [UV_IGNORE]. This causes libuv to open new file descriptors for the child
113
+ process, and redirect them to [/dev/null] or [nul]. *)
114
115
val disable_stdio_inheritance : unit -> unit
116
(** Disables (tries) file descriptor inheritance for inherited descriptors.
0 commit comments