Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Molaro <lupus@oddwiz.org>2006-05-30 13:31:24 +0400
committerPaolo Molaro <lupus@oddwiz.org>2006-05-30 13:31:24 +0400
commit51127666ef6fd7ae56e4253cee8812e22c64bfdb (patch)
tree5a0a19705ad7558f4af38e99389e77dca75c528d /docs/gc-variables-in-c
parenta230bc0c4c4acf6bbd9e430a29d179c7c3a15ba4 (diff)
Precise GC doc updates.
svn path=/trunk/mono/; revision=61253
Diffstat (limited to 'docs/gc-variables-in-c')
-rw-r--r--docs/gc-variables-in-c6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/gc-variables-in-c b/docs/gc-variables-in-c
index 61a7802fc18..c197e74205e 100644
--- a/docs/gc-variables-in-c
+++ b/docs/gc-variables-in-c
@@ -93,4 +93,8 @@ the GC memory, to remove the reference, set the variable to NULL.
As we prepare the code for a precise GC, GC_MALLOC () will not be used anymore
in this way in most cases: we'll have a mechanism to specify exactly where
-references to GC memory is stored. \ No newline at end of file
+references to GC memory is stored. This mechanism is now available with the new GC,
+see usages of mono_gc_alloc_fixed (), mono_gc_register_root () and
+mono_gc_make_descr_from_bitmap().
+See also docs/precise-gc for additional info.
+