Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 566 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 566 Bytes

Artifacts of those Memory Management Tsoding Sessions

thumbnail thumbnail

Quick Start

$ make
$ ./heap

Limitations

  • The pointers to the heap can only be located in the heap and the stack.
  • No packed structs. All of the pointers should be aligned.
  • No tricks that obscure the pointers (like XOR Linked Lists).
  • Probably works only on x86_64
  • Probably works only when compiled with GCC