void CheckFreeLocalloc() { while (localPool != null && localPool.GuardPos > topPos) { localPool = localPool.Free(); } }
public void FreeAllLocalloc() { LocallocNode node = this.localPool; while (node != null) { node = node.Free(); } this.localPool = null; }