mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
21 lines
495 B
C#
21 lines
495 B
C#
using System;
|
|
using Cosmos.Core;
|
|
|
|
namespace Cosmos.Kernel
|
|
{
|
|
public class GC
|
|
{
|
|
public static uint AllocNewObject(uint aSize)
|
|
{
|
|
return Heap.MemAlloc(aSize);
|
|
}
|
|
public static unsafe void IncRefCount(uint aObject)
|
|
{
|
|
//throw new NotImplementedException();
|
|
}
|
|
public static unsafe void DecRefCount(uint aObject)
|
|
{
|
|
//throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|