Yengine: try read XEngine state from wire

This commit is contained in:
UbitUmarov
2018-11-22 01:11:35 +00:00
parent fb0c8036f0
commit 5951152082
3 changed files with 463 additions and 35 deletions

View File

@@ -452,6 +452,11 @@ namespace OpenSim.Region.ScriptEngine.Yengine
return newuse;
}
public virtual void AddHeapUse(int delta)
{
Interlocked.Add(ref heapUsed, delta);
}
public int xmrHeapLeft()
{
return heapLimit - heapUsed;