1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Bug 348159: Tracing console is not shown automatically. Hack to get it working in time for Indigo. Needs to be revisited.

This commit is contained in:
Marc Khouzam 2011-06-03 18:10:54 +00:00
parent 1f46851ba3
commit fa8c801dcc

View file

@ -439,7 +439,13 @@ public class LaunchUtils {
public static boolean getIsNonStopMode(ILaunchConfiguration config) {
try {
return config.getAttribute(IGDBLaunchConfigurationConstants.ATTR_DEBUGGER_NON_STOP,
getIsNonStopModeDefault());
// This call causes a race condition with the TraceControlManager
// Don't use it for now, until we find a fix.
// Consequence is that a Debug As->C/C++ application shortcut will not follow
// the preference for non-stop. This is not as bad as not have the gdb traces
// Bug 348159
IGDBLaunchConfigurationConstants.DEBUGGER_NON_STOP_DEFAULT);
// getIsNonStopModeDefault());
} catch (CoreException e) {
}
return false;