Updated Memory Manager (markdown)
parent
285349c7a9
commit
9b505a974e
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue