From 47a2bd8915b99d32c52d26d7dfaf8833ccbee68f Mon Sep 17 00:00:00 2001 From: Elia Sulimanov Date: Wed, 19 Aug 2020 22:17:13 +0300 Subject: [PATCH] Fixed GC API Found some functions implementations. --- source/Cosmos.Core/GCImplementation.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Cosmos.Core/GCImplementation.cs b/source/Cosmos.Core/GCImplementation.cs index c55e23bcf..03bb039f0 100644 --- a/source/Cosmos.Core/GCImplementation.cs +++ b/source/Cosmos.Core/GCImplementation.cs @@ -44,20 +44,20 @@ namespace Cosmos.Core } /// - /// Increase reference count of an given object. Not implemented. + /// Increase reference count of an given object. Plugged. /// /// An object to increase to reference count of. - /// Thrown always. + /// Thrown on fatal error, contact support. public static unsafe void IncRefCount(uint aObject) { throw new NotImplementedException(); } /// - /// Decrease reference count of an given object. Not implemented. + /// Decrease reference count of an given object. Plugged. /// /// An object to decrease to reference count of. - /// Thrown always. + /// Thrown on fatal error, contact support. public static unsafe void DecRefCount(uint aObject) { throw new NotImplementedException();