emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Should catchlist elements be marked during GC?


From: Richard Stallman
Subject: Re: Should catchlist elements be marked during GC?
Date: Fri, 14 Jul 2006 00:07:40 -0400

    During GC, we don't explicitly go through the catchlist, marking the
    TAG and VAL member of each element.

Yes we do.  Here's the code from Fgarbage_collect.

  for (catch = catchlist; catch; catch = catch->next)
    {
      mark_object (catch->tag);
      mark_object (catch->val);
    }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]