Page MenuHomeFreeBSD

stand: liblua: drop default buffer size to 128
ClosedPublic

Authored by kevans on Nov 22 2019, 4:22 PM.
Tags
None
Referenced Files
F153182841: D22500.id64724.diff
Sun, Apr 19, 4:10 PM
Unknown Object (File)
Wed, Apr 15, 8:06 AM
Unknown Object (File)
Tue, Apr 14, 10:13 PM
Unknown Object (File)
Mon, Apr 13, 8:26 AM
Unknown Object (File)
Fri, Apr 10, 5:29 AM
Unknown Object (File)
Mon, Apr 6, 2:54 AM
Unknown Object (File)
Tue, Mar 24, 1:55 AM
Unknown Object (File)
Mar 9 2026, 5:34 PM
Subscribers
None

Details

Summary

Lua allocates LUAL_BUFFERSIZE buffers on the stack for various string functions (string.format, string.gsub) -- this works out to be somewhat significant and not necessary, based on how we use string operations. Dropping it risks having to allocate per call to format/gsub, but this is not the case for our usage -- we simply stop allocating 8K buffers on the stack when luaL_Buffer is used.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable