comparison test/sanity/WBApi.java @ 6152:958bb4b7be49

Merge
author asaha
date Tue, 10 Apr 2012 10:42:34 -0700
parents 2d503de963b3
children 1b0dc9f87e75
comparison
equal deleted inserted replaced
6151:e778c29768e6 6152:958bb4b7be49
1 /*
2 * @test WBApi
3 * @summary verify that whitebox functions can be linked and executed
4 * @run compile -J-XX:+UnlockDiagnosticVMOptions -J-XX:+WhiteBoxAPI WBApi.java
5 * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI WBApi
6 */
7
8 import sun.hotspot.WhiteBox;
9 public class WBApi {
10 public static void main(String... args) {
11 System.out.printf("args at: %x\n",WhiteBox.getWhiteBox().getObjectAddress(args));
12 }
13 }