Closer to getting things working...

This commit is contained in:
2023-08-06 00:38:22 -04:00
parent bab9b13cb8
commit a660b63581
9 changed files with 147 additions and 79 deletions
+2 -2
View File
@@ -189,7 +189,6 @@ function multi:newProxy(list)
THREAD = multi.integration.THREAD
end
local proxy = THREAD.waitFor(self.proxy_link)
print("Got:",proxy)
proxy.funcs = self.funcs
return proxy:init()
end
@@ -267,7 +266,8 @@ function multi:newSystemThreadedProcessor(cores)
for _, method in pairs(implement) do
c[method] = function(self, ...)
proxy = self.spawnTask(method, ...):init()
proxy = self.spawnTask(method, ...)
proxy:init()
references[proxy] = self
return proxy
end