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

/osnet-11/usr/src/lib/libc/port/threads/
H A Dsynch.c372 spinners_incr(volatile uint32_t *lockword, uint8_t max_spinners) argument
379 if (((old & SPINNERMASK) >> SPINNERSHIFT) >= max_spinners)
1286 uint8_t max_spinners; local
1315 if ((max_spinners = self->ul_max_spinners) >= ncpus)
1316 max_spinners = ncpus - 1;
1317 max_count = (max_spinners != 0)? self->ul_adaptive_spin : 0;
1330 if (spinners_incr(&mp->mutex_lockword, max_spinners) == -1)
1474 uint8_t max_spinners; local
1522 if ((max_spinners = self->ul_max_spinners) >= ncpus)
1523 max_spinners
[all...]

Completed in 22 milliseconds