TLSF和伙伴系统融合算法实现
LSF_BUDDY.h文件#ifndef TLSF_BUDDY_H#define TLSF_BUDDY_H#define NULL 0
// TLSF (Two-Level Segregated Fit) Memory Allocator Implementation
#define FREE_LIST_SIZE (sizeof(unsigned int)<<3)// Minimum block size is the size of List_Node, which includes th…
2026/7/2 4:45:45