* Unlock the sleep queue chain associated with a given wait channel. */
| 291 | * Unlock the sleep queue chain associated with a given wait channel. |
| 292 | */ |
| 293 | void |
| 294 | sleepq_release(const void *wchan) |
| 295 | { |
| 296 | struct sleepqueue_chain *sc; |
| 297 | |
| 298 | sc = SC_LOOKUP(wchan); |
| 299 | mtx_unlock_spin(&sc->sc_lock); |
| 300 | } |
| 301 | |
| 302 | /* |
| 303 | * Places the current thread on the sleep queue for the specified wait |
no outgoing calls
no test coverage detected