hotspot/test/sanity/WBApi.java
author duke
Wed, 05 Jul 2017 18:18:57 +0200
changeset 13386 382651d28f25
parent 12095 cc3d6f08a4c4
child 15793 4867678e3517
permissions -rw-r--r--
Merge

/*
 * @test WBApi
 * @summary verify that whitebox functions can be linked and executed
 * @run compile -J-XX:+UnlockDiagnosticVMOptions -J-XX:+WhiteBoxAPI WBApi.java
 * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI WBApi
 */

import sun.hotspot.WhiteBox;
public class WBApi {
    public static void main(String... args) {
        System.out.printf("args at: %x\n",WhiteBox.getWhiteBox().getObjectAddress(args));
    }
}