summaryrefslogtreecommitdiff
path: root/src/debug/ee/debugger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/ee/debugger.h')
-rw-r--r--src/debug/ee/debugger.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/debug/ee/debugger.h b/src/debug/ee/debugger.h
index 9cdf546290..f99931e9dd 100644
--- a/src/debug/ee/debugger.h
+++ b/src/debug/ee/debugger.h
@@ -397,9 +397,9 @@ inline LPVOID PushedRegAddr(REGDISPLAY* pRD, LPVOID pAddr)
{
LIMITED_METHOD_CONTRACT;
-#if defined(_TARGET_AMD64_)
+#ifdef WIN64EXCEPTIONS
if ( ((UINT_PTR)(pAddr) >= (UINT_PTR)pRD->pCurrentContextPointers) &&
- ((UINT_PTR)(pAddr) <= ((UINT_PTR)pRD->pCurrentContextPointers + sizeof(_KNONVOLATILE_CONTEXT_POINTERS))) )
+ ((UINT_PTR)(pAddr) <= ((UINT_PTR)pRD->pCurrentContextPointers + sizeof(T_KNONVOLATILE_CONTEXT_POINTERS))) )
#else
if ( ((UINT_PTR)(pAddr) >= (UINT_PTR)pRD->pContext) &&
((UINT_PTR)(pAddr) <= ((UINT_PTR)pRD->pContext + sizeof(T_CONTEXT))) )
@@ -2772,8 +2772,6 @@ public:
bool ResumeThreads(AppDomain* pAppDomain);
- static DWORD WaitForSingleObjectHelper(HANDLE handle, DWORD dwMilliseconds);
-
void ProcessAnyPendingEvals(Thread *pThread);
bool HasLazyData();