Guest User

Untitled

a guest
Jan 13th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. struct malloc_chunk {
  2. INTERNAL_SIZE_T prev_size; //size of prev_chunk
  3. INTERNAL_SIZE_T size; // size of chunk
  4.  
  5. /* Only use if free*/
  6. struct malloc_chunk *fd; //point to nextchunk
  7. struct malloc_chunk *bk; //point to backchunk
  8.  
  9. /*Use for large chunk*/
  10. struct malloc_chunk *fd_nextsize;
  11. struct malloc_chunk *bk_nextsize;
  12. };
Add Comment
Please, Sign In to add comment