garbage collector for pike
"Leif Stensson, Lysator @ Pike importm?te f?r mailinglistan" <[email protected]>
| Newsgroups | gmane.comp.lang.pike.user |
|---|---|
| Message-ID | <[email protected]> |
Hi, Pike basically uses a reference counting garbage collector, supplemented by more or less traditional mark-sweep collector to catch circular structures. There is also support for weak references. There are a few large comment blocks in the file "src/gc.c" in the Pike source code which you can read for more details about exactly how Pike's garbage collection works. You can, for example, get the source code from: http://pike.lysator.liu.se/pub/pike/latest-stable/Pike-v8.0.240.tar.gz --- Leif Stensson