Home
last modified time | relevance | path

Searched refs:child (Results 1 – 9 of 9) sorted by relevance

/libuv/src/
H A Dheap-inl.h80 *child = t; in heap_node_swap()
83 if (child->left == child) { in heap_node_swap()
101 child->parent->left = child; in heap_node_swap()
103 child->parent->right = child; in heap_node_swap()
131 child = &(*child)->right; in HEAP_EXPORT()
133 child = &(*child)->left; in HEAP_EXPORT()
184 child = *max; in HEAP_EXPORT()
201 child->left->parent = child; in HEAP_EXPORT()
205 child->right->parent = child; in HEAP_EXPORT()
235 while (child->parent != NULL && less_than(child, child->parent)) in HEAP_EXPORT()
[all …]
/libuv/docs/src/
H A Dprocess.rst51 * Set the child process' user id.
55 * Set the child process' group id.
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
213 the child process. The convention is that stdio[0] points to stdin,
218 the child processes uses the MSVCRT runtime.
[all …]
H A Dloop.rst203 Reinitialize any kernel state necessary in the child process after
207 child process.
211 use in the child, including the default loop (even if you don't
214 the loop in the child. Failure to do so will result in undefined
216 parent and child or aborting the child process.
218 When possible, it is preferred to create a new loop in the child
220 created in the child process after the fork should not use this
233 parent process *for any event loop*, the child process will no
236 the child will fall back to the same implementation used for
243 events in the child process; they must be closed and restarted.
H A Dmisc.rst397 are available for threads or child processes.
/libuv/include/uv/
H A Dtree.h286 struct type *child, *parent, *old = elm; \
289 child = RB_RIGHT(elm, field); \
291 child = RB_LEFT(elm, field); \
297 child = RB_RIGHT(elm, field); \
300 if (child) \
301 RB_PARENT(child, field) = parent; \
304 RB_LEFT(parent, field) = child; \
306 RB_RIGHT(parent, field) = child; \
309 RB_ROOT(head) = child; \
334 if (child) \
[all …]
/libuv/docs/src/guide/
H A Dprocesses.rst4 libuv offers considerable child process management, abstracting the platform
5 differences and allowing communication with the child process using streams or
9 such a case, a process often uses multiple child processes to achieve tasks
22 Spawning child processes
51 ID of the child process.
89 modifies the child process behaviour:
99 * ``UV_PROCESS_DETACHED`` - Starts the child process in a new session, which
116 Just remember that the handle is still monitoring the child, so your program
176 child be the same as the stderr of the parent. In this case, libuv supports
258 Parent-child IPC
[all …]
H A Dbasics.rst7 networking support, asynchronous file system access, child processes and more.
/libuv/
H A DREADME.md261 a child process:
280 When running the test from a child of the test driver process
290 (gdb) set follow-fork-mode child
H A DChangeLog2582 * win,process: allow child pipe handles to be opened in overlapped mode (Björn
3332 * win: avoid leaking pipe handles to child processes (Jameson Nash)
4326 * unix: reap child on execvp() failure (Ryan Phillips)
4347 * test: spawn child replacing std{out,err} to stderr (Saúl Ibarra Corretgé)
4852 * unix: stop child process watcher after last one exits (Saúl Ibarra Corretgé)
4930 * windows: read the PATH env var of the child (Alex Crichton)
6098 * windows: kill child processes when the parent dies (Bert Belder)
6119 * windows: kill child processes when the parent dies (Bert Belder)

Completed in 33 milliseconds