| author | Rafael Medeiros Teixeira | 2011-12-06 12:46:55 (EST) |
|---|---|---|
| committer | Otavio Pontes | 2011-12-06 14:26:05 (EST) |
| commit | cccffee4b8128975dbad6d966e286147c08cdde2 (patch) (side-by-side diff) | |
| tree | b0dbc7b322adc8db8e0180e8b49e01ba177adfe2 | |
| parent | cba9b8bec9ddc7834969f649c06d5cd675ae01d5 (diff) | |
| download | org.eclipse.linuxtools-cccffee4b8128975dbad6d966e286147c08cdde2.zip org.eclipse.linuxtools-cccffee4b8128975dbad6d966e286147c08cdde2.tar.gz org.eclipse.linuxtools-cccffee4b8128975dbad6d966e286147c08cdde2.tar.bz2 | |
oprofile: Edited ChangeLog, removed unnecessary import in OpInfo.java, removed version for org.eclipse.linuxtools.tools.launch.core in MANIFEST.MF
3 files changed, 25 insertions, 2 deletions
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.core/ChangeLog b/oprofile/org.eclipse.linuxtools.oprofile.core/ChangeLog index eb6d7fa..ee7b2d0 100644 --- a/oprofile/org.eclipse.linuxtools.oprofile.core/ChangeLog +++ b/oprofile/org.eclipse.linuxtools.oprofile.core/ChangeLog @@ -1,3 +1,27 @@ +2011-12-04 Rafael Teixeira <rafaelmt@linux.vnet.ibm.com> + + * META-INF/MANIFEST.MF: Add org.eclipse.linuxtools.tools.launch.core + to required bundles. + * op_error_key: Add error key opcontrolSudo + * src/org/eclipse/linuxtools/oprofile/core/Oprofile.java: Add currentPath + to allow profiling using the Linux Tools path that's set for the + current project. + * src/org/eclipse/linuxtools/oprofile/core/linux/LinuxOpcontrolProvider.java: + Use RuntimeProcessFactory to get Linux Tools path if it's set for + the current project. + * src/org/eclipse/linuxtools/oprofile/core/linux/OpxmlRunner.java: + Use RuntimeProcessFactory to get Linux Tools path if it's set for + the current project. + * src/org/eclipse/linuxtools/oprofile/core/oprofile.properties: + Add error message for executing Oprofile with a different Linux + Tools path without putting opcontrol in the sudoers file. + * src/org/eclipse/linuxtools/oprofile/core/opxml/EventIdCache.java: + Use RuntimeProcessFactory to get Linux Tools path if it's set for + the current project. + * src/org/eclipse/linuxtools/oprofile/core/opxml/info/InfoAdapter.java: + Use RuntimeProcessFactory to get Linux Tools path if it's set for + the current project. + 2011-09-28 Roland Grunberg <rgrunber@redhat.com> * src/org/eclipse/linuxtools/oprofile/core/opxml/info/InfoAdapter.java diff --git a/oprofile/org.eclipse.linuxtools.oprofile.core/META-INF/MANIFEST.MF b/oprofile/org.eclipse.linuxtools.oprofile.core/META-INF/MANIFEST.MF index 93d5af1..d189a5b 100644 --- a/oprofile/org.eclipse.linuxtools.oprofile.core/META-INF/MANIFEST.MF +++ b/oprofile/org.eclipse.linuxtools.oprofile.core/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Activator: org.eclipse.linuxtools.oprofile.core.OprofileCorePlugin Bundle-Vendor: %bundleProvider Require-Bundle: org.eclipse.core.runtime;bundle-version="3.4.0", org.eclipse.ui;bundle-version="3.4.0", - org.eclipse.linuxtools.tools.launch.core;bundle-version="0.8.0" + org.eclipse.linuxtools.tools.launch.core Bundle-RequiredExecutionEnvironment: J2SE-1.5 Bundle-ClassPath: oprofile-core.jar Bundle-ActivationPolicy: lazy diff --git a/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/oprofile/core/daemon/OpInfo.java b/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/oprofile/core/daemon/OpInfo.java index 18d68a0..573643e 100644 --- a/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/oprofile/core/daemon/OpInfo.java +++ b/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/oprofile/core/daemon/OpInfo.java @@ -17,7 +17,6 @@ import java.util.Arrays; import java.util.Comparator; import java.util.HashMap; -import org.eclipse.core.resources.IProject; import org.eclipse.linuxtools.oprofile.core.OprofileCorePlugin; import org.eclipse.linuxtools.oprofile.core.OpxmlException; import org.eclipse.linuxtools.oprofile.core.linux.LinuxOpxmlProvider.OpInfoRunner; |

