* Unlock the turnstile chain associated with a given lock. */
| 671 | * Unlock the turnstile chain associated with a given lock. |
| 672 | */ |
| 673 | void |
| 674 | turnstile_chain_unlock(struct lock_object *lock) |
| 675 | { |
| 676 | struct turnstile_chain *tc; |
| 677 | |
| 678 | tc = TC_LOOKUP(lock); |
| 679 | mtx_unlock_spin(&tc->tc_lock); |
| 680 | } |
| 681 | |
| 682 | /* |
| 683 | * Return a pointer to the thread waiting on this turnstile with the |
no outgoing calls
no test coverage detected