annotate mxtool/ClasspathDump.java @ 21157:31a1589aecdf

Make Truffle respect -XX:+DebugNonSafepoints
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 29 Apr 2015 18:09:41 -0700
parents a6bd486b1b44
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14914
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
1 public class ClasspathDump {
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
2 public static void main(String[] args) {
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
3 System.out.print(System.getProperty("sun.boot.class.path"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
4 System.out.print("|");
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
5 System.out.print(System.getProperty("java.ext.dirs"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
6 System.out.print("|");
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
7 System.out.print(System.getProperty("java.endorsed.dirs"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
8 }
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
9 }