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:
parent
1f46851ba3
commit
fa8c801dcc
1 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue