Browse Source

Add Limitations section to the README

rexim 4 years ago
parent
commit
45092763ca
1 changed files with 6 additions and 0 deletions
  1. 6 0
      README.md

+ 6 - 0
README.md

@@ -6,3 +6,9 @@
 $ make
 $ make
 $ ./heap
 $ ./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).