fyerfyer / fyerfyer.github.io

1 stars 0 forks source link

9.10.Simple Allocator Implementation | fyerfyer #33

Open fyerfyer opened 2 months ago

fyerfyer commented 2 months ago

https://fyerfyer.github.io/2024/08/23/9-10-Simple-Allocator-Implementation/

(9.10.)Simple Allocator Implementation 1.General Allocator Design   The allocator exports three functions to application programs: 123extern int mm_init(void);extern void *mm_malloc (size_t size)