【2014-11-23】《The Hardware/Software Interface》– Section 10
时间:
2014-11-23 17:18:01
阅读:
225
评论:
收藏:
0
[点我收藏+]
- 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



【2014-11-23】《The Hardware/Software Interface》– Section 10
原文:http://www.cnblogs.com/sjtujoe/p/4116645.html