>>>>> "Sam" == Sam Steingold <[EMAIL PROTECTED]> writes:
Sam> What does this message mean?
Sam> "*** Sigsegv in page not marked as write protected"
Sam> does this mean that everything that comes after is garbage?
Sam> (doesn't look that way)
It means that there was a segfault somewhere in the dynamic space and
the page wasn't write protected. The sigsegv handler is only
expecting segfaults in dynamic space to be from writing to a page
that's write-protected, as part of the GC implementation. But
something else happened.
Could be a bug in GC, or a bug in user code.
Ray