Home
last modified time | relevance | path

Searched refs:TP_SUSPEND (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/tpool/
H A Dthread_pool.c145 (tpool->tp_flags & TP_SUSPEND)) && in tpool_worker()
168 if (tpool->tp_flags & TP_SUSPEND) { in tpool_worker()
169 tpool->tp_flags &= ~TP_SUSPEND; in tpool_worker()
176 !(tpool->tp_flags & TP_SUSPEND)) { in tpool_worker()
347 if (!(tpool->tp_flags & TP_SUSPEND)) { in tpool_dispatch()
377 tpool->tp_flags &= ~TP_SUSPEND; in tpool_destroy()
415 tpool->tp_flags &= ~TP_SUSPEND; in tpool_abandon()
447 tpool->tp_flags |= TP_SUSPEND; in tpool_suspend()
459 suspended = (tpool->tp_flags & TP_SUSPEND) != 0; in tpool_suspended()
473 if (!(tpool->tp_flags & TP_SUSPEND)) { in tpool_resume()
[all …]
H A Dthread_pool_impl.h85 #define TP_SUSPEND 0x02 /* pool is being suspended */ macro