diff options
Diffstat (limited to 'rts/sm/Scav.c')
-rw-r--r-- | rts/sm/Scav.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rts/sm/Scav.c b/rts/sm/Scav.c index 69ccea7bc3..3ebcc22d44 100644 --- a/rts/sm/Scav.c +++ b/rts/sm/Scav.c @@ -4,6 +4,10 @@ * * Generational garbage collector: scavenging functions * + * Scavenging means reading already copied (evacuated) objects and evactuating + * any pointers the object holds and updating the pointers to their new + * locations. + * * Documentation on the architecture of the Garbage Collector can be * found in the online commentary: * |