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

/illumos-gate/usr/src/lib/libc/port/threads/
H A Dsynch.c374 spinners_incr(volatile uint32_t *lockword, uint8_t max_spinners) argument
381 if (((old & SPINNERMASK) >> SPINNERSHIFT) >= max_spinners)
1257 uint8_t max_spinners; local
1286 if ((max_spinners = self->ul_max_spinners) >= ncpus)
1287 max_spinners = ncpus - 1;
1288 max_count = (max_spinners != 0)? self->ul_adaptive_spin : 0;
1301 if (spinners_incr(&mp->mutex_lockword, max_spinners) == -1)
1445 uint8_t max_spinners; local
1493 if ((max_spinners = self->ul_max_spinners) >= ncpus)
1494 max_spinners
[all...]

Completed in 64 milliseconds