1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Added reporting of fsync to THD wait interface

This commit is contained in:
Mikael Ronstrom
2010-10-28 18:27:25 +02:00
parent 8fbf0e8817
commit c0854c3e17
6 changed files with 42 additions and 6 deletions

View File

@ -42,7 +42,8 @@ typedef enum _thd_wait_type_e {
THD_WAIT_USER_LOCK= 7,
THD_WAIT_BINLOG= 8,
THD_WAIT_GROUP_COMMIT= 9,
THD_WAIT_LAST= 10
THD_WAIT_SYNC= 10,
THD_WAIT_LAST= 11
} thd_wait_type;
extern struct thd_wait_service_st {
void (*thd_wait_begin_func)(void*, thd_wait_type);