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-03-16 03:37:23 +0300
committerAndrew Au <andrewau@microsoft.com>2017-03-16 03:37:23 +0300
commit37778ec77a542749b45651d5c9f57b46b604f1e8 (patch)
treefba7f4c18bde14940d63bac33fb966ccdf2d8bf5 /src/Native/Runtime/DebuggerHook.h
parent3ddb35b8a2715496eaaa1135cd34d6023e1f3cc5 (diff)
Debugger Support
[tfs-changeset: 1650991]
Diffstat (limited to 'src/Native/Runtime/DebuggerHook.h')
-rw-r--r--src/Native/Runtime/DebuggerHook.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Native/Runtime/DebuggerHook.h b/src/Native/Runtime/DebuggerHook.h
new file mode 100644
index 000000000..26feedd06
--- /dev/null
+++ b/src/Native/Runtime/DebuggerHook.h
@@ -0,0 +1,28 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+// -----------------------------------------------------------------------------------------------------------
+// Support for evaluating expression in the debuggee during debugging
+// -----------------------------------------------------------------------------------------------------------
+
+#ifndef __DEBUGGER_HOOK_H__
+#define __DEBUGGER_HOOK_H__
+
+#include "common.h"
+#include "CommonTypes.h"
+#ifdef DACCESS_COMPILE
+#include "CommonMacros.h"
+#endif
+#include "daccess.h"
+
+#ifndef DACCESS_COMPILE
+
+class DebuggerHook
+{
+public:
+ static void OnBeforeGcCollection();
+};
+
+#endif //!DACCESS_COMPILE
+
+#endif // __DEBUGGER_HOOK_H__ \ No newline at end of file