| 6154 | Can be NULL, in this case current THD is used. |
| 6155 | */ |
| 6156 | extern "C" void thd_wait_end(MYSQL_THD thd) |
| 6157 | { |
| 6158 | if (!thd) |
| 6159 | { |
| 6160 | thd= current_thd; |
| 6161 | if (unlikely(!thd)) |
| 6162 | return; |
| 6163 | } |
| 6164 | MYSQL_CALLBACK(thd->scheduler, thd_wait_end, (thd)); |
| 6165 | } |
| 6166 | |
| 6167 | #endif // INNODB_COMPATIBILITY_HOOKS */ |
| 6168 |
no outgoing calls
no test coverage detected