Force queue processing end

This commit is contained in:
Alessandro Proto 2023-02-10 20:24:28 +01:00
parent b212f41fea
commit ffa223b5b3

View file

@ -79,12 +79,15 @@ public class LuaState : IDisposable
/// <returns>Whether the thread can still be resumed and is not finished</returns> /// <returns>Whether the thread can still be resumed and is not finished</returns>
public bool ProcessQueue() public bool ProcessQueue()
{ {
while (Dequeue(out var npars)) var ncycle = _queue.Count;
var done = 0;
while (done < ncycle && Dequeue(out var npars))
{ {
if (!Resume(npars)) if (!Resume(npars))
{ {
return false; return false;
} }
done++;
} }
return true; return true;