1
1
Mirror von https://git.shadowkat.net/izaya/OC-PsychOS2.git synchronisiert 2024-09-27 14:45:18 -04:00

added the ability for software to change the computer.pullSignal timeout

Dieser Commit ist enthalten in:
XeonSquared 2020-04-11 12:10:58 +10:00
Ursprung 23173506b9
Commit 0cdd70e917

Datei anzeigen

@ -58,4 +58,11 @@ function os.getenv(k) -- gets a process' *k* environment variable
return tTasks[cPid].e[k]
end
end
function os.setTimeout(n)
if type(n) == "number" and n >= 0 then
nTimeout = n
return true
end
return false
end
end