* Lock the sleep queue chain associated with the specified wait channel. */
| 259 | * Lock the sleep queue chain associated with the specified wait channel. |
| 260 | */ |
| 261 | void |
| 262 | sleepq_lock(const void *wchan) |
| 263 | { |
| 264 | struct sleepqueue_chain *sc; |
| 265 | |
| 266 | sc = SC_LOOKUP(wchan); |
| 267 | mtx_lock_spin(&sc->sc_lock); |
| 268 | } |
| 269 | |
| 270 | /* |
| 271 | * Look up the sleep queue associated with a given wait channel in the hash |
no outgoing calls
no test coverage detected