Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 118295 Details for
Bug 255813
Probe Profiling fails in the External Java Application use case
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
patch
255813.txt (text/plain), 1.82 KB, created by
Raheel Ashraf
on 2008-11-19 13:32:57 EST
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Raheel Ashraf
Created:
2008-11-19 13:32:57 EST
Size:
1.82 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.tptp.platform.jvmti.client >Index: src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/TIDelegateHelper.java >=================================================================== >RCS file: /cvsroot/tptp/platform/org.eclipse.tptp.platform.jvmti.client/src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/TIDelegateHelper.java,v >retrieving revision 1.74 >diff -u -r1.74 TIDelegateHelper.java >--- src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/TIDelegateHelper.java 11 Jun 2008 21:41:25 -0000 1.74 >+++ src/org/eclipse/tptp/platform/jvmti/client/internal/launcher/TIDelegateHelper.java 19 Nov 2008 18:31:34 -0000 >@@ -301,6 +301,25 @@ > { > TI_JVM_FLAG = TI_PROBE_JVM_FLAG; > String VMArgs = launchConfiguration.getAttribute("executableArgs", ""); >+ //255813 need to deal with the Remote Java Application use case >+ //where the specified classpath needs to be added to the bootclasspath >+ String classpath = launchConfiguration.getAttribute(IProfileLaunchConfigurationConstants.ATTR_CLASSPATH, (String)null); >+ if(classpath != null) { >+ String bootClassPath = "-Xbootclasspath/p:"; >+ /* If this is a Windows operating system, add quotes to the beginning and end of >+ * the value passed to bootclasspath. This is done in case there are spaces in the >+ * path(s) specified. */ >+ if (System.getProperty("os.name").toLowerCase().indexOf("windows") != -1) >+ { >+ bootClassPath = bootClassPath + "\""; >+ } >+ bootClassPath += classpath; >+ if (System.getProperty("os.name").toLowerCase().indexOf("windows") != -1) >+ { >+ bootClassPath = bootClassPath + "\""; >+ } >+ VMArgs += " " + bootClassPath; >+ } > TI_JVM_FLAG = VMArgs + " " + TI_JVM_FLAG ; > isCGProf = false; > break;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 255813
:
118295
|
118368