mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 10:31:13 +02:00
19 lines
428 B
C#
19 lines
428 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;
|
|
}
|
|
}
|
|
} |