Searched defs:nthreads (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libzpool/common/
H A Dtaskq.c191 taskq_create(const char *name, int nthreads, pri_t pri, argument
199 ASSERT3S(nthreads, >=, 0);
200 ASSERT3S(nthreads, <=, 100);
201 pct = MIN(nthreads, 100);
204 nthreads = (sysconf(_SC_NPROCESSORS_ONLN) * pct) / 100;
205 nthreads = MAX(nthreads, 1); /* need at least 1 thread */
207 ASSERT3S(nthreads, >=, 1);
216 tq->tq_active = nthreads;
217 tq->tq_nthreads = nthreads;
242 int nthreads = tq->tq_nthreads; local
[all...]
/osnet-11/usr/src/lib/libc_db/common/
H A Dthread_db.c583 int nthreads; local
590 offsetof(uberdata_t, nthreads);
596 offsetof(uberdata32_t, nthreads);
609 if (ps_pdread(ph_p, nthreads_addr, &nthreads, sizeof (int)) != PS_OK)
615 *nthread_p = nthreads + nzombies;
/osnet-11/usr/src/lib/libc/inc/
H A Dthr_uberdata.h892 int nthreads; /* total number of live threads/lwps */ member in struct:uberdata
1103 int nthreads; member in struct:uberdata32

Completed in 28 milliseconds