summaryrefslogtreecommitdiff
path: root/src/pal
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-11-08 21:12:57 -0800
committerJan Kotas <jkotas@microsoft.com>2018-11-08 21:13:54 -0800
commit592bc01e8da6bb4f692b3b090a3c82d415a3b7d7 (patch)
treeb76251d1ee822540d5cd19933ef937178704fcb6 /src/pal
parent9f41ff9d20c66a4b4fa8c273059085b8a8036343 (diff)
downloadcoreclr-592bc01e8da6bb4f692b3b090a3c82d415a3b7d7.tar.gz
coreclr-592bc01e8da6bb4f692b3b090a3c82d415a3b7d7.tar.bz2
coreclr-592bc01e8da6bb4f692b3b090a3c82d415a3b7d7.zip
Revert "Passing the CONTEXT in ICorDebugManagedCallback4::DataBreakpoint"
This reverts commit 9dd2a3688320fa197a3a2a412523416f10e7fa3b.
Diffstat (limited to 'src/pal')
-rw-r--r--src/pal/prebuilt/inc/cordebug.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/pal/prebuilt/inc/cordebug.h b/src/pal/prebuilt/inc/cordebug.h
index a9742571a7..1b53577b2b 100644
--- a/src/pal/prebuilt/inc/cordebug.h
+++ b/src/pal/prebuilt/inc/cordebug.h
@@ -3788,9 +3788,7 @@ EXTERN_C const IID IID_ICorDebugManagedCallback4;
virtual HRESULT STDMETHODCALLTYPE DataBreakpoint(
/* [in] */ ICorDebugProcess *pProcess,
- /* [in] */ ICorDebugThread *pThread,
- /* [in] */ BYTE *pContext,
- /* [in] */ ULONG32 contextSize) = 0;
+ /* [in] */ ICorDebugThread *pThread) = 0;
};
@@ -3824,9 +3822,7 @@ EXTERN_C const IID IID_ICorDebugManagedCallback4;
HRESULT ( STDMETHODCALLTYPE *DataBreakpoint )(
ICorDebugManagedCallback4 * This,
/* [in] */ ICorDebugProcess *pProcess,
- /* [in] */ ICorDebugThread *pThread,
- /* [in] */ BYTE *pContext,
- /* [in] */ ULONG32 contextSize);
+ /* [in] */ ICorDebugThread *pThread);
END_INTERFACE
} ICorDebugManagedCallback4Vtbl;
@@ -3857,8 +3853,8 @@ EXTERN_C const IID IID_ICorDebugManagedCallback4;
#define ICorDebugManagedCallback4_AfterGarbageCollection(This,pProcess) \
( (This)->lpVtbl -> AfterGarbageCollection(This,pProcess) )
-#define ICorDebugManagedCallback4_DataBreakpoint(This,pProcess,pThread,pContext,contextSize) \
- ( (This)->lpVtbl -> DataBreakpoint(This,pProcess,pThread,pContext,contextSize) )
+#define ICorDebugManagedCallback4_DataBreakpoint(This,pProcess,pThread) \
+ ( (This)->lpVtbl -> DataBreakpoint(This,pProcess,pThread) )
#endif /* COBJMACROS */