From a8da7144bea5ed12fdbabda69d518ef62eff7245 Mon Sep 17 00:00:00 2001 From: Andrew Au Date: Fri, 10 Aug 2018 10:44:36 -0700 Subject: [PATCH] More API comments Commit migrated from https://github.com/dotnet/coreclr/commit/2015a6266ee239267997017bebaadb025ccd223b --- src/coreclr/src/debug/inc/dacdbiinterface.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/coreclr/src/debug/inc/dacdbiinterface.h b/src/coreclr/src/debug/inc/dacdbiinterface.h index abbe7d9..bd532a7 100644 --- a/src/coreclr/src/debug/inc/dacdbiinterface.h +++ b/src/coreclr/src/debug/inc/dacdbiinterface.h @@ -2696,7 +2696,17 @@ public: virtual HRESULT GetILCodeVersionNodeData(VMPTR_ILCodeVersionNode ilCodeVersionNode, DacSharedReJitInfo* pData) = 0; - // TODO, andrewau, documentation + // Enable or disable the GC notification events. The GC notification events are turned off by default + // They will be delivered through ICorDebugManagedCallback4 + // + // + // Arguments: + // fEnable - true to enable the events, false to disable + // + // Returns: + // S_OK if no error + // error HRESULTs such as CORDBG_READ_VIRTUAL_FAILURE are possible + // virtual HRESULT EnableGCNotificationEvents(BOOL fEnable) = 0; -- 2.7.4