[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Optimizing Lua memory access/usage...
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Sun, 9 Sep 2001 21:23:37 -0300
>Could the same be accomplished with a static character
>buffer on the C stack and strcat()?
Yes, it could and was done like that until recently.
However, the static buffer implies a large stack consumption that generates
problems in programs with many nested dofiles. Some people running Lua in
small systems complained about this.
--lhf