[TITLE] add value removed from native ide
authorwonhyoung2.park <wonhyoung2.park@samsung.com>
Fri, 18 Nov 2011 09:29:32 +0000 (18:29 +0900)
committerwonhyoung2.park <wonhyoung2.park@samsung.com>
Fri, 18 Nov 2011 09:29:32 +0000 (18:29 +0900)
[Type]
[Module] profiler
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

org.eclipse.linuxtools.oprofile.launch.exe/src/com/samsung/linuxplatform/oprofile/launch/SLPOprofileLaunchDelegate.java
org.eclipse.linuxtools.valgrind.launch.exe/src/org/eclipse/linuxtools/valgrind/launch/SLPValgrindLaunchDelegate.java

index 3e19cf9..0488a99 100644 (file)
@@ -55,6 +55,9 @@ import com.samsung.slp.nativeide.launch.SLPLaunchDelegate;
 import com.samsung.slp.nativeide.launch.SLPLaunchMessages;
 
 public class SLPOprofileLaunchDelegate extends SLPLaunchDelegate {
+       
+       protected static final String MAKE_DIRECTORY_CMD = "mkdir -p ";
+       protected static final String CHANGE_DIRECTORY_CMD = "cd ";
 
        protected static final String PACKAGE_NAME = "oprofile";
        protected static final String PACKAGE_FILENAME_ARM = "oprofile_armel.deb";
index 7836d77..24f4ae3 100644 (file)
@@ -51,6 +51,9 @@ import com.samsung.slp.nativeide.launch.SLPLaunchDelegate;
 import com.samsung.slp.nativeide.launch.SLPLaunchMessages;
 
 public class SLPValgrindLaunchDelegate extends SLPLaunchDelegate {
+       
+       protected static final String MAKE_DIRECTORY_CMD = "mkdir -p ";
+       protected static final String CHANGE_DIRECTORY_CMD = "cd ";
 
        protected IValgrindLaunchDelegate dynamicDelegate;
        protected ValgrindCommand command;