Home
last modified time | relevance | path

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

/coreutils/gl/lib/
Dheap.c119 size_t child = 2 * parent; in heapify_down() local
121 if (child < count && compare (array[child], array[child + 1]) < 0) in heapify_down()
122 child++; in heapify_down()
124 if (compare (array[child], element) <= 0) in heapify_down()
127 array[parent] = array[child]; in heapify_down()
128 parent = child; in heapify_down()
/coreutils/tests/rm/
Dr-root.sh146 gdb -nx --batch-silent -return-child-result \
/coreutils/src/
Dsort.c1189 pid_t child = pipe_fork (pipefds, MAX_FORK_TRIES_DECOMPRESS); in open_temp() local
1191 switch (child) in open_temp()
1213 temp->pid = child; in open_temp()
/coreutils/
DNEWS982 this CHLD signal from the exiting child was missed. In each case
2459 timeout is no longer confused when starting off with a child process.
4160 mkdir -p and install -d (or -D) now use a method that forks a child
/coreutils/doc/
Dcoreutils.texi9934 # Ignore the signal so we never inadvertently terminate the dd child.