mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Added counter of number of missed wakeups of InnoDB threads
This commit is contained in:
@ -251,6 +251,9 @@ extern ulint srv_read_ahead_seq;
|
||||
/* variable to count the number of random read-aheads were done */
|
||||
extern ulint srv_read_ahead_rnd;
|
||||
|
||||
/* Number of threads that may have missed a lock wait wakeup */
|
||||
extern ulint sync_wake_ups;
|
||||
|
||||
/* In this structure we store status variables to be passed to MySQL */
|
||||
typedef struct export_var_struct export_struc;
|
||||
|
||||
@ -545,6 +548,7 @@ struct export_var_struct{
|
||||
ulint innodb_rows_inserted;
|
||||
ulint innodb_rows_updated;
|
||||
ulint innodb_rows_deleted;
|
||||
ulint innodb_wake_ups;
|
||||
};
|
||||
|
||||
/* The server system struct */
|
||||
|
Reference in New Issue
Block a user