boot.cfg change

This commit is contained in:
2026-01-15 15:45:32 -05:00
parent 443149fe8d
commit df1fa69402
2 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
-- DOING SO MAY RENDER YOUR SYSTEM UNBOOTABLE! -- DOING SO MAY RENDER YOUR SYSTEM UNBOOTABLE!
-- This file is auto-generated during the build process. -- This file is auto-generated during the build process.
-- RECOVERY BOOT CONFIGURATION FILE -- DEFAULT BOOT CONFIGURATION FILE
return { return {
initPath = "/sbin/init.lua", initPath = "/sbin/init.lua",
maxOpenFiles = 128, maxOpenFiles = 128,

View File

@@ -138,6 +138,7 @@ function kernel.main()
else else
ret = {coroutine.resume(task.coro, table.unpack(task.syscallReturn))} ret = {coroutine.resume(task.coro, table.unpack(task.syscallReturn))}
end end
local elapsed = kernel.computer:time() - startTime local elapsed = kernel.computer:time() - startTime
task.lastTime = elapsed task.lastTime = elapsed
task.totalTime = (task.totalTime or 0) + elapsed task.totalTime = (task.totalTime or 0) + elapsed