mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
perfschema memory related instrumentation changes
This commit is contained in:
@ -677,7 +677,8 @@ struct ilink
|
||||
struct ilink **prev,*next;
|
||||
static void *operator new(size_t size) throw ()
|
||||
{
|
||||
return (void*)my_malloc((uint)size, MYF(MY_WME | MY_FAE | ME_FATAL));
|
||||
return (void*)my_malloc(PSI_INSTRUMENT_ME,
|
||||
(uint)size, MYF(MY_WME | MY_FAE | ME_FATAL));
|
||||
}
|
||||
static void operator delete(void* ptr_arg, size_t)
|
||||
{
|
||||
|
Reference in New Issue
Block a user