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
Unknown Object (File)
Wed, Apr 17, 2:06 PM
Unknown Object (File)
Mar 12 2024, 10:01 PM
Unknown Object (File)
Mar 7 2024, 12:43 PM
Unknown Object (File)
Jan 9 2024, 2:53 PM
Unknown Object (File)
Dec 23 2023, 2:07 AM
Unknown Object (File)
Dec 20 2023, 10:53 PM
Unknown Object (File)
Nov 15 2023, 12:05 PM
Unknown Object (File)
Oct 14 2023, 11:04 AM
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