123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef MYSQL_SERVICE_THD_EGINE_LOCK_INCLUDED
- #define MYSQL_SERVICE_THD_EGINE_LOCK_INCLUDED
- #ifdef __cplusplus
- class THD;
- #else
- #define THD void
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- void thd_report_row_lock_wait(THD* self, THD *wait_for);
- #ifdef __cplusplus
- }
- #endif
- #endif
|