Home | History | Annotate | Download | only in lib

Lines Matching full:slaves

54 /* Type of an entry in the slaves array.
70 static slaves_entry_t * volatile slaves = static_slaves;
94 /* Skip unused entries in the slaves array. */
95 if (slaves[n].used)
97 pid_t slave = slaves[n].child;
120 /* Try to store the new slave in an unused entry of the slaves array. */
122 slaves_entry_t *s = slaves;
140 /* Extend the slaves array. Note that we cannot use xrealloc(),
143 slaves_entry_t *old_slaves = slaves;
152 the slaves list. */
158 slaves = new_slaves;
160 /* Now we can free the old slaves array. */
167 that make up slaves[slaves_count]. */
168 slaves[slaves_count].child = child;
169 slaves[slaves_count].used = 1;
180 slaves_entry_t *s = slaves;