lua-users home
lua-l archive

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


on 3/16/05 11:41 AM, Mark Hamburg at mhamburg@adobe.com wrote:

> * lgc.c:
> 
> Add:
> 
>   if (!L->allowhook) return;
> 
> To the beginning of luaC_step to avoid recursive processing during GC
> metamethod handling.

At least with the RVM patch, one actually wants:

    if (nohooks(L)) return;

When I hit 2.7 gigabytes of memory use last night, I started to get
suspicious. ;-)

Mark