C/C++
garbage.txt
Associated article: C++ and Garbage Collection
Tags: C/C++
Published source code accompanying the article by Mike Spertus in which he examines automatic garbage collection and C++.
C++ and Garbage Collection
by Mike Spertus
Listing One
if(word > heapBottom && word < heapTop) { /* In heap? */
desc = blockDescriptors[word >> 12]) /* Get descriptor */
desc->marked = 1; /* Mark the block */
if(desc->kind == SMALL_OBJECT_PAGE) /* ...


