ctypes 모듈 개인 정리
보호되어 있는 글입니다.
보호글
2016. 4. 30. 17:03
구조체 핸드레이
보호되어 있는 글입니다.
보호글
2016. 4. 26. 01:26
Heap chunk 정리
Heap Chunk Struct1234567891011struct malloc_chunk { INTERNAL_SIZE_T prev_size; /* Size of previous chunk (if free). */ INTERNAL_SIZE_T size; /* Size in bytes, including overhead. */ struct malloc_chunk* fd; /* double links -- used only if free. */ struct malloc_chunk* bk; /* Only used for large blocks: pointer to next larger size. */ struct malloc_chunk* fd_nextsize; /* double links -- used only..
System/Linux
2016. 4. 14. 15:33