From 89ae2737207f1e382cbceae9bf165694e250d4be Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Mon, 3 Apr 2006 21:10:08 +0000 Subject: [PATCH] Bug 134617: The "stop on shared library event" option doesn't work. --- debug/org.eclipse.cdt.debug.mi.core/ChangeLog | 4 ++++ .../src/org/eclipse/cdt/debug/mi/core/GDBCDIDebugger2.java | 1 + 2 files changed, 5 insertions(+) diff --git a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog index 2713c02b8f0..c64fc02bf85 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.mi.core/ChangeLog @@ -1,3 +1,7 @@ +2006-04-03 Mikhail Khodjaiants + Bug 134617: The "stop on shared library event" option doesn't work. + * GDBCDIDebugger2.java + 2006-03-31 Mikhail Khodjaiants Corrected position of the "try-catch-finally" clause in createSession. * AbstractGDBCDIDebugger.java diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBCDIDebugger2.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBCDIDebugger2.java index cb4b7a6c8b9..314c83fd1e4 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBCDIDebugger2.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBCDIDebugger2.java @@ -194,6 +194,7 @@ public class GDBCDIDebugger2 extends AbstractGDBCDIDebugger { try { sharedMgr.setAutoLoadSymbols( target, autolib ); sharedMgr.setStopOnSolibEvents( target, stopOnSolibEvents ); + sharedMgr.setDeferredBreakpoint( false ); // The idea is that if the user set autolib, by default // we provide with the capability of deferred breakpoints // And we set setStopOnSolib events for them(but they should not see those things.