diff options
Diffstat (limited to 'include/my_alloc.h')
-rw-r--r-- | include/my_alloc.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/my_alloc.h b/include/my_alloc.h index 9b0aad26956..181f637c093 100644 --- a/include/my_alloc.h +++ b/include/my_alloc.h @@ -20,6 +20,8 @@ #ifndef _my_alloc_h #define _my_alloc_h +#include <mysql/psi/psi_memory.h> + #define ALLOC_MAX_BLOCK_TO_DROP 4096 #define ALLOC_MAX_BLOCK_USAGE_BEFORE_DROP 10 @@ -43,7 +45,6 @@ typedef struct st_mem_root /* if block have less memory it will be put in 'used' list */ size_t min_malloc; size_t block_size; /* initial block size */ - size_t total_alloc; unsigned int block_num; /* allocated blocks counter */ /* first free block in queue test counter (if it exceed @@ -52,7 +53,8 @@ typedef struct st_mem_root unsigned int first_block_usage; void (*error_handler)(void); - const char *name; + + PSI_memory_key m_psi_key; } MEM_ROOT; #ifdef __cplusplus |