summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2018-08-10 10:44:36 -0700
committerAndrew Au <cshung@gmail.com>2018-11-06 18:34:47 -0800
commit2015a6266ee239267997017bebaadb025ccd223b (patch)
treec0cdcf8760e36dca91e092651ccfcf83ab158915 /src/debug
parent3c2a1f099cf2150f5b3597bd3d40e1061ef13aa7 (diff)
downloadcoreclr-2015a6266ee239267997017bebaadb025ccd223b.tar.gz
coreclr-2015a6266ee239267997017bebaadb025ccd223b.tar.bz2
coreclr-2015a6266ee239267997017bebaadb025ccd223b.zip
More API comments
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/inc/dacdbiinterface.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/debug/inc/dacdbiinterface.h b/src/debug/inc/dacdbiinterface.h
index abbe7d9db1..bd532a7c3d 100644
--- a/src/debug/inc/dacdbiinterface.h
+++ b/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;