8 lines
333 B
Lua
8 lines
333 B
Lua
|
---@module kio "Kernel I/O"
|
||
|
local kio = {}
|
||
|
|
||
|
---@func create_buffer
|
||
|
---@arg blocking boolean "True if read calls to a buffer that doesn't contain enough data block."
|
||
|
---@arg pid integer "This is set to the PID of the process which handles the buffers."
|
||
|
---@return table "The buffer for use anywhere."
|
||
|
kio.create_buffer = create_buffer
|