Searched defs:allthreads (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dthread.c59 if (mdb_readvar(&wsp->walk_addr, "allthreads") == -1) {
60 mdb_warn("failed to read 'allthreads'");
95 return (WALK_DONE); /* Proc has 0 threads or allthreads = 0 */
732 uintptr_t allthreads; local
757 /* read 'allthreads' */
758 if (mdb_readsym(&allthreads, sizeof (kthread_t *),
759 "allthreads") == -1) {
760 mdb_warn("failed to read 'allthreads'\n");
761 allthreads = NULL;
953 if (addr == allthreads) {
[all...]
/illumos-gate/usr/src/uts/common/disp/
H A Dthread.c83 * allthreads is only for use by kmem_readers. All kernel loops can use
86 kthread_t *allthreads = &t0; /* circular list of all threads */ variable
526 * Need to hold onto pidlock to block allthreads walkers until
621 ASSERT(allthreads != t); /* t0 never exits */
683 * is taken off the allthreads list, a cv_broadcast must be

Completed in 49 milliseconds