Home | History | Annotate | Download | only in gnulib-lib

Lines Matching defs:slaves

114 /* Type of an entry in the slaves array.
130 static slaves_entry_t * volatile slaves = static_slaves;
154 /* Skip unused entries in the slaves array. */
155 if (slaves[n].used)
157 pid_t slave = slaves[n].child;
180 /* Try to store the new slave in an unused entry of the slaves array. */
182 slaves_entry_t *s = slaves;
200 /* Extend the slaves array. Note that we cannot use xrealloc(),
203 slaves_entry_t *old_slaves = slaves;
211 the slaves list. */
217 slaves = new_slaves;
219 /* Now we can free the old slaves array. */
226 that make up slaves[slaves_count]. */
227 slaves[slaves_count].child = child;
228 slaves[slaves_count].used = 1;
239 slaves_entry_t *s = slaves;