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-04-06 21:21:11 +0300
committerAndrew Au <andrewau@microsoft.com>2017-04-06 21:21:11 +0300
commit5b69cf3cab2f902a63793596d689fd0008f9b1fd (patch)
treee16c49ce6b26e07e270e6e8adb2f1b7e2d69c6a9 /src/Native/Runtime/DebuggerHook.h
parentc1d3fe1c2df77a009b5bcfacd0f93977c08011ba (diff)
Some runtime support for debugging scenario
[tfs-changeset: 1653409]
Diffstat (limited to 'src/Native/Runtime/DebuggerHook.h')
-rw-r--r--src/Native/Runtime/DebuggerHook.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Native/Runtime/DebuggerHook.h b/src/Native/Runtime/DebuggerHook.h
index 26feedd06..fb8d0090c 100644
--- a/src/Native/Runtime/DebuggerHook.h
+++ b/src/Native/Runtime/DebuggerHook.h
@@ -17,10 +17,18 @@
#ifndef DACCESS_COMPILE
+struct DebuggerProtectedBufferList
+{
+ UInt64 address;
+ UInt16 size;
+ struct DebuggerProtectedBufferList* next;
+};
+
class DebuggerHook
{
public:
- static void OnBeforeGcCollection();
+ static void OnBeforeGcCollection();
+ static DebuggerProtectedBufferList* s_debuggerProtectedBuffers;
};
#endif //!DACCESS_COMPILE