| 8362 | |
| 8363 | |
| 8364 | void |
| 8365 | THD::wait_for_wakeup_ready() |
| 8366 | { |
| 8367 | mysql_mutex_lock(&LOCK_wakeup_ready); |
| 8368 | while (!wakeup_ready) |
| 8369 | mysql_cond_wait(&COND_wakeup_ready, &LOCK_wakeup_ready); |
| 8370 | mysql_mutex_unlock(&LOCK_wakeup_ready); |
| 8371 | } |
| 8372 | |
| 8373 | void |
| 8374 | THD::signal_wakeup_ready() |
no outgoing calls
no test coverage detected