mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-22 03:54:20 -05:00
Compare commits
2 Commits
2707ecc155
...
1ef6d5db96
Author | SHA1 | Date | |
---|---|---|---|
|
1ef6d5db96 | ||
|
6f1b673bec |
@ -13,7 +13,7 @@ local function readBuffer(fi)
|
|||||||
if len < 1 then
|
if len < 1 then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
coroutine.yield()
|
if os.sleep then os.sleep(0) else coroutine.yield() end
|
||||||
return lz.decompress(fi:read(len))
|
return lz.decompress(fi:read(len))
|
||||||
end
|
end
|
||||||
function stream.close()
|
function stream.close()
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
local fsmanager = {}
|
||||||
local function mount(addr)
|
local function mount(addr)
|
||||||
dest = component.invoke(addr,"getLabel") or "mnt/"..addr:sub(1,3)
|
dest = component.invoke(addr,"getLabel") or "mnt/"..addr:sub(1,3)
|
||||||
dest = "/"..dest
|
dest = "/"..dest
|
||||||
@ -12,7 +13,7 @@ for addr, _ in component.list("filesystem") do
|
|||||||
mount(addr)
|
mount(addr)
|
||||||
end
|
end
|
||||||
|
|
||||||
function start()
|
function fsmanager.start()
|
||||||
return os.spawn(function()
|
return os.spawn(function()
|
||||||
while true do
|
while true do
|
||||||
local tE = {coroutine.yield()}
|
local tE = {coroutine.yield()}
|
||||||
@ -24,3 +25,5 @@ function start()
|
|||||||
end
|
end
|
||||||
end,"fsmanager")
|
end,"fsmanager")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
return fsmanager
|
||||||
|
Loading…
Reference in New Issue
Block a user