Lines Matching refs:process

7 Process handles will spawn a new process and allow the user to control it and
20 Options for spawning the process (passed to :c:func:`uv_spawn`.
40 will indicate the exit status and the signal that caused the process to
51 * Set the child process' user id.
55 * Set the child process' group id.
65 * Spawn the child process in a detached state - this will make it a process
67 * the parent exits. Note that the child process will still keep the
68 * parent's event loop alive unless the parent process calls uv_unref() on
69 * the child's process handle.
100 Container for each stdio handle or fd passed to a child process.
114 Flags specifying how a stdio should be transmitted to the child process.
122 * in the child process:
140 * The child process will be given a duplicate of the parent's
146 * The child process will be given a duplicate of the parent's
154 * determine the direction of flow, from the child process' perspective. Both
175 The PID of the spawned process. It's set after calling :c:func:`uv_spawn`.
182 Callback called after the process exits.
197 Environment for the new process. If NULL the parents environment is used.
213 the child process. The convention is that stdio[0] points to stdin,
217 On Windows file descriptors greater than 2 are available to the child process only if
223 Libuv can change the child process' user/group id. This happens only when
237 process.
245 Disables inheritance for file descriptors / handles that this process
247 this process don't accidentally inherit these handles.
259 Initializes the process handle and starts the process. If the process is
267 process.
277 Sends the specified signal to the given process handle. Check the documentation