mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
mem0dbg.c:
InnoDB with UNIV_MEM_DEBUG did not compile because a global variable was forgotten when we put back mem_print_info() functions 2 days ago; add that variable innobase/mem/mem0dbg.c: InnoDB with UNIV_MEM_DEBUG did not compile because a global variable was forgotten when we put back mem_print_info() functions 2 days ago; add that variable
This commit is contained in:
parent
c02eb02cd4
commit
94df4f36dd
1 changed files with 2 additions and 1 deletions
|
@ -20,8 +20,9 @@ Protected by mem_hash_mutex above. */
|
|||
static ulint mem_n_created_heaps = 0;
|
||||
static ulint mem_n_allocations = 0;
|
||||
static ulint mem_total_allocated_memory = 0;
|
||||
ulint mem_current_allocated_memory = 0;
|
||||
ulint mem_current_allocated_memory = 0;
|
||||
static ulint mem_max_allocated_memory = 0;
|
||||
static ulint mem_last_print_info = 0;
|
||||
|
||||
/* Size of the hash table for memory management tracking */
|
||||
#define MEM_HASH_SIZE 997
|
||||
|
|
Loading…
Reference in a new issue