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