【2014-11-23】《The Hardware/Software Interface》– Section 10

  1. 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
  2. Implicit Free Lists
  3. Explicit Free Lists
  4. Classical Garbage Collection Algoriithms
  5. image
  6. image
  7. image

posted on 2014-11-23 15:54  sjtujoe  阅读(114)  评论(0编辑  收藏  举报