Searched refs:parent (Results 1 – 8 of 8) sorted by relevance
/libuv/src/ |
H A D | heap-inl.h | 78 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 D | tree.h | 80 #define RB_SET(elm, parent, field) do { \ argument 81 RB_PARENT(elm, field) = parent; \ 163 struct type *parent, *gparent, *tmp; \ 164 while ((parent = RB_PARENT(elm, field)) != NULL && \ 165 RB_COLOR(parent, field) == RB_RED) { \ 166 gparent = RB_PARENT(parent, field); \ 167 if (parent == RB_LEFT(gparent, field)) { \ 171 RB_SET_BLACKRED(parent, gparent, field); \ 175 if (RB_RIGHT(parent, field) == elm) { \ 176 RB_ROTATE_LEFT(head, parent, tmp, field); \ [all …]
|
/libuv/test/ |
H A D | test-udp-send-hang-loop.c | 29 #define CHECK_OBJECT(handle, type, parent) \ argument 30 ASSERT_PTR_EQ((type*)(handle), &(parent))
|
/libuv/docs/src/ |
H A D | process.rst | 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 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 D | loop.rst | 210 loop created in the parent process that you plan to continue to 212 continue to use it in the parent). This function must be called 216 parent and child or aborting the child process. 219 process instead of reusing a loop created in the parent. New loops 233 parent process *for any event loop*, the child process will no 242 the parent process at the time of forking will *not* deliver
|
H A D | misc.rst | 371 Returns the parent process ID.
|
/libuv/docs/src/guide/ |
H A D | processes.rst | 83 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 D | ChangeLog | 6147 * windows: kill child processes when the parent dies (Bert Belder) 6168 * windows: kill child processes when the parent dies (Bert Belder)
|
Completed in 37 milliseconds