Browse thread
Re: Gc Question
- Damien Doligez
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Damien Doligez <Damien.Doligez@i...> |
| Subject: | Re: Gc Question |
>From: skaller <skaller@maxtal.com.au> >How does (or should I say 'can') the garbage collector >tell the difference between a pointer to a structured block, >and a pointer to something else (outside the caml heap)? Quite simply, a pointer to outside the heap points outside the heap... Concretely, this is done by dividing the memory into 4k "pages" and having a table of bytes to tell for each page whether it is in the heap. >unless >the collector 'knows' where all structure blocks live >and tests for that. [Conservative collectors often do just that] >Is this the case?? In short, yes, although the collector doesn't know about each block individually. -- Damien