lua-users home
lua-l archive

Re: Garbage Collector Problem

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


> > Can you check whether the table is handled again by 'traverseephemeron'
> > when 'atomic' is called? It should be (through the call to
> > 'retraversegrays'), and this late 'traverseephemeron' should mark the
> > callback...
I guess I found the bug. ''retraversegrays' does not traverse 'allweaks'...
Can you try the following patch?
--- lgc.c	2013年04月26日 18:22:05	2.140.1.2
+++ lgc.c	2014年09月01日 13:24:33
@@ -403,7 +403,7 @@
 reallymarkobject(g, gcvalue(gval(n))); /* mark it now */
 }
 }
- if (prop)
+ if (g->gcstate != GCSatomic || prop)
 linktable(h, &g->ephemeron); /* have to propagate again */
 else if (hasclears) /* does table have white keys? */
 linktable(h, &g->allweak); /* may have to clean white keys */
-- Roberto

AltStyle によって変換されたページ (->オリジナル) /