- 论坛徽章:
- 0
|
/usr/src/sys/kern/kern_mutex.c
- #if defined(SMP) && !defined(NO_ADAPTIVE_MUTEXES)
- /*
- * If the current owner of the lock is executing on another
- * CPU, spin instead of blocking.
- */
- owner = (struct thread *)(v & MTX_FLAGMASK);
- #ifdef ADAPTIVE_GIANT
- if (TD_IS_RUNNING(owner)) {
- #else
- if (m != &Giant && TD_IS_RUNNING(owner)) {
- #endif
- turnstile_release(&m->mtx_object);
- while (mtx_owner(m) == owner && TD_IS_RUNNING(owner)) {
- cpu_spinwait();
- }
- continue;
- }
- #endif /* SMP && !NO_ADAPTIVE_MUTEXES */
复制代码 |
|