| a16664ce | 02-Mar-2018 |
Kyle Evans <[email protected]> |
liblua: Use putc instead of printf for printc
printc does not need the features or the overhead of printf. It does not take formatting strings, and it pipes the single string argument through an "%s
liblua: Use putc instead of printf for printc
printc does not need the features or the overhead of printf. It does not take formatting strings, and it pipes the single string argument through an "%s" format.
Instead, use putc directly. This pipes the string through in its entirety as a series of 'unsigned char's, generally straight to the console emulator.
Discussed with: tsoome
show more ...
|
| 2630b89b | 20-Feb-2018 |
Kyle Evans <[email protected]> |
liblua: Add loader.machine and loader.machine_arch properties
Provisioned from MACHINE/MACHINE_ARCH on the system, expose loader.machine and loader.machine_arch respectively.
These may be used to h
liblua: Add loader.machine and loader.machine_arch properties
Provisioned from MACHINE/MACHINE_ARCH on the system, expose loader.machine and loader.machine_arch respectively.
These may be used to hide ACPI option on non-applicable archs.
Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D14446
show more ...
|
| 77d4be50 | 18-Feb-2018 |
Conrad Meyer <[email protected]> |
Lua loader: Add barebones "lfs" module
Add a Lua FileSystem module, an emulation of a subset of the permissively licensed (MIT) Lua library of the same name[0], to our loader's Lua environment.
[0]
Lua loader: Add barebones "lfs" module
Add a Lua FileSystem module, an emulation of a subset of the permissively licensed (MIT) Lua library of the same name[0], to our loader's Lua environment.
[0]: https://github.com/keplerproject/luafilesystem/
Reviewed by: kevans Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D14418
show more ...
|
| b216e997 | 17-Feb-2018 |
Conrad Meyer <[email protected]> |
liblua: Emulate DIR, opendir, fdopendir, closedir
In a similar fashion to FILE, provide thin shims for the standard directory manipulation functions.
Reviewed by: imp Sponsored by: Dell EMC Isilon
liblua: Emulate DIR, opendir, fdopendir, closedir
In a similar fashion to FILE, provide thin shims for the standard directory manipulation functions.
Reviewed by: imp Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D14417
show more ...
|