aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs')
-rw-r--r--Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs b/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs
deleted file mode 100644
index 8732b507..00000000
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-namespace Ryujinx.HLE.HOS.Kernel.Memory
-{
- class KMemoryBlockSlabManager
- {
- private ulong _capacityElements;
-
- public int Count { get; set; }
-
- public KMemoryBlockSlabManager(ulong capacityElements)
- {
- _capacityElements = capacityElements;
- }
-
- public bool CanAllocate(int count)
- {
- return (ulong)(Count + count) <= _capacityElements;
- }
- }
-} \ No newline at end of file