Re: Updating to 5.1w5: My change list
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Updating to 5.1w5: My change list
- From: Mark Hamburg <mhamburg@...>
- Date: 2005年3月17日 09:22:39 -0800
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