- The malloc package
- void* malloc(size_t size)
- void free (void *p)
- other functions
- calloc: Version of malloc that initializes allocated block to zero
- realloc: Changes the size of a previously allocated block
- abrk: Used internally by allocators to grow or shrink the heap
- Implicit Free Lists
- Explicit Free Lists
- Classical Garbage Collection Algoriithms
时间: 2024-10-12 21:41:37