Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2017-06-19 22:53:57 +0300
committerAndrew Au <andrewau@microsoft.com>2017-06-19 22:53:57 +0300
commitdb5a595b30c01241c1d7aacadd0c567ed05d622f (patch)
tree9988b8a615cf6e96681e2194a3bed298a556f5c0 /src/Native/Runtime/DebuggerHook.h
parent0dbbd725a5693fe594e8bfdcaf8bf0b4a468d198 (diff)
Debugger Support
[tfs-changeset: 1662135]
Diffstat (limited to 'src/Native/Runtime/DebuggerHook.h')
-rw-r--r--src/Native/Runtime/DebuggerHook.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Native/Runtime/DebuggerHook.h b/src/Native/Runtime/DebuggerHook.h
index 3f050a4d0..bb03123cf 100644
--- a/src/Native/Runtime/DebuggerHook.h
+++ b/src/Native/Runtime/DebuggerHook.h
@@ -41,10 +41,10 @@ public:
static DebuggerProtectedBufferListNode* s_debuggerProtectedBuffers;
static DebuggerOwnedHandleListNode* s_debuggerOwnedHandles;
private:
- static void EnsureConservativeReporting(GcProtectionRequest* request);
- static void RemoveConservativeReporting(GcProtectionRequest* request);
- static void EnsureHandle(GcProtectionRequest* request);
- static void RemoveHandle(GcProtectionRequest* request);
+ static void EnsureConservativeReporting(DebuggerGcProtectionRequest* request);
+ static void RemoveConservativeReporting(DebuggerGcProtectionRequest* request);
+ static void EnsureHandle(DebuggerGcProtectionRequest* request);
+ static void RemoveHandle(DebuggerGcProtectionRequest* request);
static UInt32 s_debuggeeInitiatedHandleIdentifier;
};