lua-users home
lua-l archive

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


> 1) The luaL_Buffer struct statically contains the temporary buffer
> (size : LUAL_BUFFERSIZE), which may be a prb if you do not want to
> consume the C stack too fast (on low end embedded system it matters)

As a side note: LUAL_BUFFERSIZE may be any size. The default size is
BUFSIZ for lack of a better default. Low end embedded systems should
compile Lua with a more appropriate LUAL_BUFFERSIZE value.

-- Roberto