summaryrefslogtreecommitdiff
path: root/src/debug/di/rsmain.cpp
diff options
context:
space:
mode:
authorAndrew Au <cshung@gmail.com>2018-11-12 19:00:44 -0800
committerGitHub <noreply@github.com>2018-11-12 19:00:44 -0800
commit5cc14fc4b86252f6a729401c959a074e54e51249 (patch)
treeb4532b4e5e86a62b50b107c27204a68d1692f696 /src/debug/di/rsmain.cpp
parente4bfbba75f40c3203267a235be5266d22adea6a3 (diff)
downloadcoreclr-5cc14fc4b86252f6a729401c959a074e54e51249.tar.gz
coreclr-5cc14fc4b86252f6a729401c959a074e54e51249.tar.bz2
coreclr-5cc14fc4b86252f6a729401c959a074e54e51249.zip
Passing the CONTEXT in ICorDebugManagedCallback4::DataBreakpoint (#20960)
* Passing the CONTEXT in ICorDebugManagedCallback4::DataBreakpoint * ifdef out the message sending on configurations that does not support data breakpoint
Diffstat (limited to 'src/debug/di/rsmain.cpp')
-rw-r--r--src/debug/di/rsmain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/di/rsmain.cpp b/src/debug/di/rsmain.cpp
index 8f26de0aea..750cb1d8ee 100644
--- a/src/debug/di/rsmain.cpp
+++ b/src/debug/di/rsmain.cpp
@@ -870,7 +870,7 @@ namespace
virtual ULONG STDMETHODCALLTYPE Release();
COM_METHOD BeforeGarbageCollection(ICorDebugProcess* pProcess);
COM_METHOD AfterGarbageCollection(ICorDebugProcess* pProcess);
- COM_METHOD DataBreakpoint(ICorDebugProcess* pProcess, ICorDebugThread* pThread);
+ COM_METHOD DataBreakpoint(ICorDebugProcess* pProcess, ICorDebugThread* pThread, BYTE* pContext, ULONG32 contextSize);
private:
// not implemented
DefaultManagedCallback4(const DefaultManagedCallback4&);
@@ -944,7 +944,7 @@ namespace
}
HRESULT
- DefaultManagedCallback4::DataBreakpoint(ICorDebugProcess* pProcess, ICorDebugThread* pThread)
+ DefaultManagedCallback4::DataBreakpoint(ICorDebugProcess* pProcess, ICorDebugThread* pThread, BYTE* pContext, ULONG32 contextSize)
{
//
// Just ignore and continue the process.