mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-30 15:31:33 -08:00
19 lines
431 B
C#
19 lines
431 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
class KMemoryBlockAllocator
|
|
{
|
|
private ulong _capacityElements;
|
|
|
|
public int Count { get; set; }
|
|
|
|
public KMemoryBlockAllocator(ulong capacityElements)
|
|
{
|
|
this._capacityElements = capacityElements;
|
|
}
|
|
|
|
public bool CanAllocate(int count)
|
|
{
|
|
return (ulong)(this.Count + count) <= _capacityElements;
|
|
}
|
|
}
|
|
} |