Searched refs:workers (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libcmdutils/common/
H A Ddecompress.c64 } *workers; variable in typeref:struct:worker
185 wk->next = workers;
186 workers = wk;
270 wk->next = workers;
271 workers = wk;
341 for (wk = workers; wk != NULL; wk = nwk) {
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_conspiracy.c79 boolean_t sc_suspend; /* workers should hold */
404 pthread_t *workers; local
454 workers = scp->sc_workers;
461 if (workers[i] == pthread_self())
463 (void) pthread_join(workers[i], NULL);
465 free(workers);
474 pthread_t *workers; local
476 workers = scp->sc_workers;
504 if (workers[i] == pthread_self()) {
505 (void) pthread_detach(workers[
[all...]
/osnet-11/usr/src/lib/libc/port/aio/
H A Daio.c69 * workers for read/write requests
70 * (__aio_mutex lock protects circular linked list of workers)
72 aio_worker_t *__workers_rw; /* circular list of AIO workers */
73 aio_worker_t *__nextworker_rw; /* next worker in list of workers */
74 int __rw_workerscnt; /* number of read/write workers */
79 aio_worker_t *__workers_no; /* circular list of AIO workers */
80 aio_worker_t *__nextworker_no; /* next worker in list of workers */
81 int __no_workerscnt; /* number of write workers */
109 int _max_workers = 256; /* max number of workers permitted */
110 int _min_workers = 4; /* min number of workers */
872 aio_worker_t *aiowp, **workers, **nextworker; local
[all...]

Completed in 51 milliseconds