Removed extra bloat, proxies are portable now!

This commit is contained in:
2023-06-25 21:46:37 -04:00
parent c39aa229f8
commit 660c10ec3b
13 changed files with 293 additions and 374 deletions
+2 -2
View File
@@ -96,7 +96,7 @@ function multi:newSystemThreadedJobQueue(n)
end
function c:pushJob(name,...)
table.insert(jobs,{name,jid,{...}})
table.insert(jobs,{name,jid,multi.pack(...)})
jid = jid + 1
return jid-1
end
@@ -121,7 +121,7 @@ function multi:newSystemThreadedJobQueue(n)
local rets
link = c.OnJobCompleted(function(jid,...)
if id==jid then
rets = {...}
rets = multi.pack(...)
end
end)
return thread.hold(function()