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