Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libc/port/tpool/
H A Dthread_pool.c51 thread_pools = tpool->tp_forw; in delete_pool()
55 tpool->tp_back->tp_forw = tpool->tp_forw; in delete_pool()
56 tpool->tp_forw->tp_back = tpool->tp_back; in delete_pool()
306 tpool->tp_forw = tpool; in tpool_create()
310 thread_pools->tp_back->tp_forw = tpool; in tpool_create()
311 tpool->tp_forw = thread_pools; in tpool_create()
559 } while ((tpool = tpool->tp_forw) != thread_pools); in postfork1_child_tpool()
H A Dthread_pool_impl.h66 tpool_t *tp_forw; /* circular list of all thread pools */ member