Lines Matching defs:items
21 * The general design of this is to add a fixed number of items to the queue and
36 mutex_t wq_lock; /* Protects below items */
38 void **wq_items; /* Array of items to process */
39 size_t wq_nitems; /* Number of items in queue */
153 void **items;
162 items = workq_alloc(ncap * sizeof (void *));
163 if (items == NULL)
166 bzero(items, ncap * sizeof (void *));
167 bcopy(wqp->wq_items, items, wqp->wq_cap * sizeof (void *));
169 wqp->wq_items = items;