Commit 94df4f36 authored by unknown's avatar unknown
Browse files

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
parent c02eb02c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ static ulint mem_n_allocations = 0;
static ulint	mem_total_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