2018-12-18 00:33:36 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
2018-11-28 17:18:09 -05:00
|
|
|
{
|
|
|
|
class KMemoryBlockAllocator
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
private ulong _capacityElements;
|
2018-11-28 17:18:09 -05:00
|
|
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public KMemoryBlockAllocator(ulong capacityElements)
|
2018-11-28 17:18:09 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
_capacityElements = capacityElements;
|
2018-11-28 17:18:09 -05:00
|
|
|
}
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
public bool CanAllocate(int count)
|
2018-11-28 17:18:09 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
return (ulong)(Count + count) <= _capacityElements;
|
2018-11-28 17:18:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|