mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 10:30:56 +01:00
Fix not scheduling when done in main.luau
This commit is contained in:
parent
bf0bd20ffc
commit
710c93d74b
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
for i = 1, 5 do
|
||||
print("iteration " .. tostring(i) .. " of 5")
|
||||
local thread = coroutine.running()
|
||||
|
||||
local counter = 0
|
||||
for j = 1, 10_000 do
|
||||
|
@ -8,10 +9,10 @@ for i = 1, 5 do
|
|||
counter += 1
|
||||
if counter == 10_000 then
|
||||
print("completed iteration " .. tostring(i) .. " of 5")
|
||||
spawn(thread)
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
-- FIXME: This resumes instantly with mlua "async" feature
|
||||
coroutine.yield()
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue