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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2017-01-14 07:54:02 +0300
committerGitHub <noreply@github.com>2017-01-14 07:54:02 +0300
commitae74b2dd303845f35a51517b88c8ad18aa741bf3 (patch)
tree10a85edb9b89777757a28c90865dcdcbdba8680a /Mono.Debugging.Win32
parentf6338d798f8698420ad5b367998f0109b8a7ee16 (diff)
parent0c4d40f2903f8ad8b7373b6722a3ea034f9f6800 (diff)
Merge pull request #1784 from JetBrains/corDebugDeactivateBreakpointsOnTerminate
Breakpoints.Clear() deactivates all the breakpoints
Diffstat (limited to 'Mono.Debugging.Win32')
-rw-r--r--Mono.Debugging.Win32/CorDebuggerSession.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Mono.Debugging.Win32/CorDebuggerSession.cs b/Mono.Debugging.Win32/CorDebuggerSession.cs
index de121c2..349aaf4 100644
--- a/Mono.Debugging.Win32/CorDebuggerSession.cs
+++ b/Mono.Debugging.Win32/CorDebuggerSession.cs
@@ -158,6 +158,7 @@ namespace Mono.Debugging.Win32
void TerminateDebugger ()
{
helperOperationsCancellationTokenSource.Cancel();
+ Breakpoints.Clear ();
lock (terminateLock) {
if (terminated)
return;