Home
last modified time | relevance | path

Searched refs:parent (Results 1 – 8 of 8) sorted by relevance

/libuv/src/
H A Dheap-inl.h78 t = *parent; in heap_node_swap()
79 *parent = *child; in heap_node_swap()
82 parent->parent = child; in heap_node_swap()
94 parent->left->parent = parent; in heap_node_swap()
96 parent->right->parent = parent; in heap_node_swap()
100 else if (child->parent->left == parent) in heap_node_swap()
129 parent = child; in HEAP_EXPORT()
139 newnode->parent = *parent; in HEAP_EXPORT()
146 while (newnode->parent != NULL && less_than(newnode, newnode->parent)) in HEAP_EXPORT()
198 child->parent = node->parent; in HEAP_EXPORT()
[all …]
/libuv/include/uv/
H A Dtree.h327 #define RB_SET(elm, parent, field) do { \ argument
328 RB_PARENT(elm, field) = parent; \
410 struct type *parent, *gparent, *tmp; \
411 while ((parent = RB_PARENT(elm, field)) != NULL && \
412 RB_COLOR(parent, field) == RB_RED) { \
413 gparent = RB_PARENT(parent, field); \
414 if (parent == RB_LEFT(gparent, field)) { \
418 RB_SET_BLACKRED(parent, gparent, field); \
422 if (RB_RIGHT(parent, field) == elm) { \
423 RB_ROTATE_LEFT(head, parent, tmp, field); \
[all …]
/libuv/test/
H A Dtest-udp-send-hang-loop.c29 #define CHECK_OBJECT(handle, type, parent) \ argument
30 ASSERT_PTR_EQ((type*)(handle), &(parent))
/libuv/docs/src/
H A Dprocess.rst67 * 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
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
246 inherited from its parent. The effect is that child processes spawned by
H A Dloop.rst192 loop created in the parent process that you plan to continue to
194 continue to use it in the parent). This function must be called
198 parent and child or aborting the child process.
201 process instead of reusing a loop created in the parent. New loops
215 parent process *for any event loop*, the child process will no
224 the parent process at the time of forking will *not* deliver
H A Dmisc.rst371 Returns the parent process ID.
/libuv/docs/src/guide/
H A Dprocesses.rst83 this to ``NULL`` to inherit the environment from the parent (this) process.
100 will keep running after the parent process exits. See example below.
106 child processes which are independent of the parent so that the parent exiting
176 child be the same as the stderr of the parent. In this case, libuv supports
220 parent process, the child process can treat that stream as standard I/O. This
261 A parent and child can have one or two way communication over a pipe created by
/libuv/
H A DChangeLog5896 * windows: kill child processes when the parent dies (Bert Belder)
5917 * windows: kill child processes when the parent dies (Bert Belder)

Completed in 31 milliseconds