jobqueues having isues with stp

This commit is contained in:
2023-07-17 00:44:59 -04:00
parent 9e6552d42e
commit bbaac2d779
5 changed files with 17 additions and 15 deletions
+5
View File
@@ -23,8 +23,13 @@ end)
local jq = multi:newSystemThreadedJobQueue(n)
jq:registerFunction("test2",function()
print("This works!")
end)
jq:registerFunction("test",function(a, b, c)
print(a, b+c)
test2()
return a+b+c
end)