* Lock the turnstile chain associated with the specified lock. */
| 558 | * Lock the turnstile chain associated with the specified lock. |
| 559 | */ |
| 560 | void |
| 561 | turnstile_chain_lock(struct lock_object *lock) |
| 562 | { |
| 563 | struct turnstile_chain *tc; |
| 564 | |
| 565 | tc = TC_LOOKUP(lock); |
| 566 | mtx_lock_spin(&tc->tc_lock); |
| 567 | } |
| 568 | |
| 569 | struct turnstile * |
| 570 | turnstile_trywait(struct lock_object *lock) |
no outgoing calls
no test coverage detected