Explorar el Código

fix some bugs with io.lua, expose io.newfd()

pull/1/head
XeonSquared hace 5 años
padre
commit
695ac926ed
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      module/io.lua

+ 3
- 3
module/io.lua Ver fichero

@@ -26,7 +26,7 @@ local function fdc(f)
fd[f.fd].close()
fd[f.fd] = nil
end
local function newfd()
function io.newfd() -- creates a new file descriptor and returns it plus its ID
local nfd=#fd+1
fd[nfd] = {}
return nfd,fd[nfd]
@@ -34,10 +34,10 @@ end
function io.open(f,m) -- opens file *f* with mode *m*
local t={["close"]=fdc}
if type(f) == "string" then
local e,fobj=fs.open(f,m)
local e,fobj=pcall(fs.open,f,m)
if not e then return false, fobj end
if fobj then
local fdi,nfd = newfd()
local fdi,nfd = io.newfd()
f=fdi
if fobj.write then
function nfd.write(d)


Cargando…
Cancelar
Guardar