Compare commits
No commits in common. "026f2524e681fb5035467846ef4c493f95c1f35f" and "efdb01328f16a96cd6c67169e1c3abc5148d067c" have entirely different histories.
026f2524e6
...
efdb01328f
@ -34,7 +34,7 @@ end
|
|||||||
|
|
||||||
function print(...) -- Writes each argument to the default output stream, separated by space.
|
function print(...) -- Writes each argument to the default output stream, separated by space.
|
||||||
for k,v in ipairs({...}) do
|
for k,v in ipairs({...}) do
|
||||||
io.write((k>1 and "\t" or "")..tostring(v))
|
io.write(tostring(v).."\t")
|
||||||
end
|
end
|
||||||
io.write("\n")
|
io.write("\n")
|
||||||
end
|
end
|
||||||
|
@ -18,7 +18,7 @@ function fsmanager.start()
|
|||||||
run = true
|
run = true
|
||||||
return os.spawn(function()
|
return os.spawn(function()
|
||||||
for addr, _ in component.list("filesystem") do
|
for addr, _ in component.list("filesystem") do
|
||||||
fsmanager.mount(addr)
|
mount(addr)
|
||||||
end
|
end
|
||||||
while run do
|
while run do
|
||||||
local tE = {coroutine.yield()}
|
local tE = {coroutine.yield()}
|
||||||
|
Loading…
Reference in New Issue
Block a user