| 6136 | thd_wait_end MUST be called immediately after waking up again. |
| 6137 | */ |
| 6138 | extern "C" void thd_wait_begin(MYSQL_THD thd, int wait_type) |
| 6139 | { |
| 6140 | if (!thd) |
| 6141 | { |
| 6142 | thd= current_thd; |
| 6143 | if (unlikely(!thd)) |
| 6144 | return; |
| 6145 | } |
| 6146 | MYSQL_CALLBACK(thd->scheduler, thd_wait_begin, (thd, wait_type)); |
| 6147 | } |
| 6148 | |
| 6149 | /** |
| 6150 | Interface for MySQL Server, plugins and storage engines to report |
no outgoing calls
no test coverage detected