/** This struct is placed first in every allocated memory block */ typedef struct ut_mem_block_struct ut_mem_block_t; /** Dynamically allocated memory block */ struct ut_mem_block_struct{ UT_LIST_NODE_T(ut_mem_block_t) mem_block_list; /*!< mem block list node */ ulint size; /*!< size of allocated memory */ ulint magic_n;/*!< magic number (UT_MEM_MAGIC_N) */ };
时间: 2024-11-08 11:12:39