made ps display the pid correctly

This commit is contained in:
Izaya 2019-11-09 13:48:50 +11:00
parent ac98d09b93
commit d23a25613d
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
print("PID# Parent | Name")
for k,v in pairs(os.tasks()) do
local t = os.taskInfo(v)
print(string.format("%4d %4d | %s",k,t.parent,t.name))
print(string.format("%4d %4d | %s",v,t.parent,t.name))
end