diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index e37e9d40177..838cae2234a 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2004-03-09 David Inglis + Added PLATFORM_NATIVE const to ICDebugCongifuration + ICDebugConfiguration.java + 2004-02-20 Mikhail Khodjaiants Fire the "suspend" event when the target is suspended because of an error. * CDebugTarget.java diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConfiguration.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConfiguration.java index bb72c012256..12f871f4c07 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConfiguration.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConfiguration.java @@ -7,6 +7,8 @@ package org.eclipse.cdt.debug.core; import org.eclipse.core.runtime.CoreException; public interface ICDebugConfiguration { + final static String PLATFORM_NATIVE = "native"; + ICDebugger getDebugger() throws CoreException; String getName(); String getID();