removed kernelaware plugin (the classic Symbian OS data view).
authorwpaul
Mon, 16 Aug 2010 23:19:01 -0500
changeset 1840 0b27caf423b4
parent 1839 42bb3f6881da
child 1844 e563086fd748
removed kernelaware plugin (the classic Symbian OS data view).
debuggercdi/com.nokia.cdt.debug.launch/META-INF/MANIFEST.MF
debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/NokiaAbstractLaunchDelegate.java
--- a/debuggercdi/com.nokia.cdt.debug.launch/META-INF/MANIFEST.MF	Mon Aug 16 22:47:46 2010 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/META-INF/MANIFEST.MF	Mon Aug 16 23:19:01 2010 -0500
@@ -20,7 +20,6 @@
  com.freescale.swt,
  org.eclipse.ui.forms,
  org.eclipse.ui.ide,
- com.nokia.carbide.cpp.debug.kernelaware,
  com.nokia.carbide.cdt.builder,
  com.nokia.carbide.cpp.sdk.core,
  com.nokia.carbide.cpp.ui,
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/NokiaAbstractLaunchDelegate.java	Mon Aug 16 22:47:46 2010 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/NokiaAbstractLaunchDelegate.java	Mon Aug 16 23:19:01 2010 -0500
@@ -47,7 +47,6 @@
 
 import com.freescale.cdt.debug.cw.core.cdi.Session;
 import com.nokia.carbide.cdt.builder.builder.CarbideCPPBuilder;
-import com.nokia.carbide.cpp.debug.kernelaware.OSDataManager;
 import com.nokia.cdt.debug.common.internal.source.lookup.SourceMappingUtils;
 import com.nokia.cdt.debug.cw.symbian.ui.executables.ExecutableTargeted;
 import com.nokia.cdt.internal.debug.launch.ui.ExecutablesTab;
@@ -188,8 +187,6 @@
 	}
 
 	protected void doAdditionalSessionSetup(Session session) {
-		if (session.getOSDataManager() == null)
-			session.setOSDataManager(new OSDataManager(session));		
 		session.setExecutableTargetedCallback(new ExecutableTargeted());
 	}
 
@@ -314,29 +311,6 @@
 		return false;
 	}
 
-	// Move to CDT when the import wizard is integrated. There is another copy
-	// of this function in the import wizard code.
-	private void waitForParsingToComplete() {
-		// After adding the binary parsers to the project we have to wait for
-		// them to finish
-		// before we can extract a good list of source files.
-		String binaryTaskName = ""; //$NON-NLS-1$
-
-		IJobManager jobMan = Job.getJobManager();
-		Job[] jobs = jobMan.find(null);
-
-		for (int i = 0; i < jobs.length; i++) {
-			if (jobs[i].getName().equals(binaryTaskName)) {
-				try {
-					jobs[i].join();
-				} catch (InterruptedException e) {
-				}
-			}
-		}
-	}
-
-
-
 	protected String getTargetLabel(String processName) {
 		String format = "{0} (Launched {1})"; //$NON-NLS-1$
 		String timestamp = DateFormat.getInstance().format(new Date(System.currentTimeMillis()));