Updated Memory Manager (markdown)

Garrett Berg 2015-03-11 14:07:37 -06:00
parent 285349c7a9
commit 9b505a974e
1 changed files with 5 additions and 0 deletions

@ -1,3 +1,8 @@
## Implementation
The current memory manager is in `py/gc.c` and is almost a textbook implementation of mark-sweep GC.
Resources:
- wikipedia article on [Trace/sweep garbage collection](http://en.wikipedia.org/wiki/Tracing_garbage_collection)
## User Level Functions
The main functions that a user needs are: