1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-15 00:02:46 +03:00

MDEV-156 Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions

This commit is contained in:
Vladislav Vaintroub
2013-02-19 20:44:33 +01:00
parent 35bc8f9f43
commit 41013f16a0
7 changed files with 66 additions and 16 deletions

View File

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