Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/GCImplementationImpl.cs
2018-04-04 19:47:55 +01:00

23 lines
566 B
C#

using Cosmos.CPU.x86;
using Cosmos.CPU.x86.Memory.Old;
using IL2CPU.API.Attribs;
namespace Cosmos.CPU_Plugs {
[Plug(typeof(GCImplementation))]
public static class GCImplementationImpl {
public static uint AllocNewObject(uint aSize) {
GlobalSystemInfo.EnsureInitialized();
return Heap.MemAlloc(aSize);
}
public static void IncRefCount(uint aObject) {
// Do nothing right now
}
public static void DecRefCount(uint aObject) {
// Do nothing right now
}
}
}