lua-users home
lua-l archive

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


> (followed by 100000 or so more entries)

How many threads do you have? It would help if you could print which
thread you are traversing.


> It appears my environment is being collected.

Why do you think this?

If you suspect that the problem is with the environment (and not with the
stack), then that trace is not going to be very useful. You should instead
check whether the environment is being marked. That is done a few lines up:

  markvalue(g, gt(l));

It seems that this is what you should trace.

-- Roberto